- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在尝试创建一个包含给定类型列表排列的列表。
当我使用指定列表而不是通过从实际输入中删除来生成新列表时,下面的代码似乎可以正常工作,尽管没有预期的结果。下面的 permutation_helper 和 broken_helper 之间的区别证明了这一点。
有谁知道为什么 mpl::remove
在这种情况下似乎没有按预期运行?
#include <boost/mpl/list.hpp>
#include <boost/mpl/transform.hpp>
#include <boost/mpl/fold.hpp>
#include <boost/mpl/push_front.hpp>
#include <boost/mpl/joint_view.hpp>
#include <boost/mpl/remove.hpp>
#include <boost/mpl/assert.hpp>
#include <boost/mpl/equal.hpp>
namespace mpl = boost::mpl;
struct test_type1 {};
struct test_type2 {};
struct test_type3 {};
template< typename T >
struct permutations;
template <typename value>
struct permutations<mpl::list1< value > >: mpl::list1<mpl::list1< value > > {};
template< typename value, typename T>
struct permutation_helper:
mpl::transform< typename permutations<
mpl::list1<test_type3> >::type,
mpl::push_front< mpl::_1, value> > { };
template< typename value, typename T>
struct broken_helper:
mpl::transform< typename permutations<
mpl::remove<T, value> >::type,
mpl::push_front< mpl::_1, value> > { };
template< typename T >
struct permutations:
mpl::fold< T,
mpl::list0<>,
mpl::joint_view< mpl::_1,
broken_helper<mpl::_2, T > > > { };
typedef mpl::list2<test_type1, test_type2> typelist;
typedef permutations<typelist>::type perms;
int main() {
BOOST_MPL_ASSERT(( mpl::equal< perms, typelist > ));
return 0;
}
我使用断言来确定函数返回的内容,typelist 不是预期的结果。这是断言为 broken_helper 返回的消息:
testcase.cpp: In function ‘int main()’:
testcase.cpp:45: error: no matching function for call to ‘assertion_failed(mpl_::failed************ boost::mpl::equal<boost::mpl::joint_view<boost::mpl::joint_view<boost::mpl::list0<mpl_::na>, boost::mpl::l_end>, boost::mpl::l_end>, boost::mpl::list2<test_type1, test_type2>, boost::is_same<mpl_::arg<-0x00000000000000001>, mpl_::arg<-0x00000000000000001> > >::************)’
使用 permutation_helper 的输出是一个实际的列表:
testcase.cpp: In function ‘int main()’:
testcase.cpp:45: error: no matching function for call to ‘assertion_failed(mpl_::failed************ boost::mpl::equal<boost::mpl::list2<test_type1, test_type2>, boost::mpl::joint_view<boost::mpl::joint_view<boost::mpl::list0<mpl_::na>, boost::mpl::l_item<mpl_::long_<1l>, boost::mpl::l_item<mpl_::long_<2l>, test_type1, boost::mpl::list1<test_type3> >, boost::mpl::l_end> >, boost::mpl::l_item<mpl_::long_<1l>, boost::mpl::l_item<mpl_::long_<2l>, test_type2, boost::mpl::list1<test_type3> >, boost::mpl::l_end> >, boost::is_same<mpl_::arg<-0x00000000000000001>, mpl_::arg<-0x00000000000000001> > >::************)’
最佳答案
mpl::remove
工作正常。问题在于您的单例列表排列模板:它仅捕获 mpl::list
的类型,而 remove 的结果具有另一种序列类型。
换句话说,mpl::remove
的结果是mpl::equal
到单例列表,而不是std::is_same
:
#include <boost/mpl/list.hpp>
#include <boost/mpl/remove.hpp>
#include <boost/mpl/equal.hpp>
namespace mpl = boost::mpl;
struct test_type1 {};
struct test_type2 {};
typedef mpl::list2<test_type1, test_type2> typelist;
typedef mpl::remove<typelist, test_type1>::type t;
typedef mpl::list1<test_type2> t_corr;
static_assert(mpl::equal<t,t_corr>::value, "t equals t_corr");
// the following will fail:
// static_assert(std::is_same<t,t_corr>::value, "t same type as t_corr");
int main() {
return 0;
}
您可以通过不基于确切类型 mpl::list
而是基于长度为 1 的属性来专门针对单例列表的模板来解决此问题:
#include <boost/mpl/list.hpp>
#include <boost/mpl/transform.hpp>
#include <boost/mpl/fold.hpp>
#include <boost/mpl/push_front.hpp>
#include <boost/mpl/joint_view.hpp>
#include <boost/mpl/remove.hpp>
#include <boost/mpl/assert.hpp>
#include <boost/mpl/equal.hpp>
#include <boost/mpl/size.hpp>
#include <boost/mpl/front.hpp>
#include <boost/mpl/begin.hpp>
#include <boost/mpl/next.hpp>
namespace mpl = boost::mpl;
struct test_type1 {};
struct test_type2 {};
struct test_type3 {};
template< typename T, typename _ENABLE=void >
struct permutations;
template <typename T>
struct permutations<T,
typename std::enable_if<mpl::size<T>::value==1>::type>
{
typedef typename mpl::list1<T> type;
};
template< typename value, typename T>
struct permutation_helper:
mpl::transform< typename permutations<
mpl::list1<test_type3> >::type,
mpl::push_front< mpl::_1, value> > { };
template< typename value, typename T>
struct broken_helper:
mpl::transform< typename permutations<
typename mpl::remove<T, value>::type >::type,
mpl::push_front< mpl::_1, value> > { };
template< typename T >
struct permutations<T,
typename std::enable_if<(mpl::size<T>::value>1)>::type>:
mpl::fold< T,
mpl::list0<>,
mpl::joint_view< mpl::_1,
broken_helper<mpl::_2, T > > > { };
typedef mpl::list2<test_type1, test_type2> typelist;
typedef permutations<typelist>::type perms;
typedef mpl::list<mpl::list<test_type1, test_type2>,
mpl::list<test_type2, test_type1> > perms_corr;
int main() {
static_assert(mpl::size<perms>::value == 2, "perms has correct size");
static_assert(mpl::equal<mpl::front<perms>::type,
mpl::front<perms_corr>::type>::value, "perms has correct front");
typedef mpl::next<mpl::begin<perms>::type>::type perms_2nd;
typedef mpl::next<mpl::begin<perms_corr>::type>::type perms_corr_2nd;
static_assert(mpl::equal<perms_2nd, perms_corr_2nd>::value, "perms has correct 2nd element");
return 0;
}
顺便说一句,
static_assert(mpl::equal<perms, perms_corr>::value, "perms correct");
会因为完全相同的原因而失败。
关于c++ - 使用 boost::mpl 的类型列表的排列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4512802/
下面的代码再现了一个我真的不理解 boost MPL 库的行为: #include #include #include using namespace boost; int main() {
我正在尝试使用 boost.mpl 编写一个小型元程序,该程序使用两个 channel 映射将“命名 channel ”与音频格式相匹配。 名称也是一个整数(枚举)。我试图在运行时实现的一个简单示例可
我正在尝试在 for_each 中使用 mpl_list #include #include #include #include #include #include #include #
我正在尝试对 mpl::string 应用转换,但无法对其进行编译。我正在使用 MS VC++2010 和 Boost 1.43.0。代码: #include #include #include
我正在尝试运行几年前编写的代码,该代码使用 matplotlib 中的 mpl。以前运行得很好,但现在突然抛出错误: from matplotlib import mpl ImportError: c
Boost MPL 文档指出 boost::map::equal "如果两个序列 Seq1 和 Seq2比较 _element_ _element_ 时是相同的。 但似乎没有检查关联序列映射是否相等元
假设我有一个 boost::mpl::vector “myvec”,例如这样定义: using myvec = boost::mpl::vector; 现在我想定义另一种类型 myvecex,它将每个
下面的代码尝试测试 boost::mpl::or_ 和 boost::mpl::and_ 的短路行为: #include #include #include #include #include
假设我有这些类型: template class Storage > struct AbstractFactoryUnit { virtual ~AbstractFactoryUnit()
我有一个类型列表定义为: typedef boost::mpl::list OriginalList; 我想创建不包含任何水果的第二个列表,即从第一个列表形成的结果列表将包含单一类型的 Brick。
我有以下内容: class Message { public: bool process() { return doProcess(); } protected
我试图在编译时使用 boost-mpl 连接字符串,但从 gcc 中收到错误。这是示例 - using namespace boost; using namespace std; template s
天哪,在使用 mpl 库时,弄清楚语法是一个碰运气的经历 (previous question)。比较两个 mpl 迭代器的正确语法是什么 - 即 it != v.end() 测试? template
我目前正致力于在我的应用程序中实现“捐赠”选项,并决定使用 PayPal(请参阅:Donate via in-app billing) 阅读文档等后,决定使用 PayPal 移动支付库 (MPL)。一
我想使用编译时 (MPL) for_each 检查给定的输入变量是否在 MPL 数组中,并再次从 MPL 数组中获取和获取输出变量。我正在尝试使用具有 2 个参数的函数对象,即 MPL 类型和输入。
我知道以下代码不起作用,因为 i 是运行时参数而不是编译时参数。但我想知道,是否有办法实现同样的目标。我有一个类列表,我需要调用其中每个类的模板函数。 void GucTable::refreshSe
我正在浏览 tutorial关于生成式编程,我偶然发现了MPL-value idiom: template class A { A(); public: static const A
我有元函数 FibIter。它计算与斐波那契数列中的数字(参数 Iter)对应的斐波那契数。然后我使用 mpl::transform 创建具有从 0 到 N 的斐波那契数列的 mpl::vector。
我试图用一些容器将每个元素包装在 mpl::set 中,例如 std::vector,尽管实际类型并不重要.我该怎么做?基本上我想从这里开始 using mySet = mpl::set; 对此 us
我有一个像这样的 boost::mpl 序列: typedef boost::mpl::vector TTypes; 我有一个特定用途的容器类,我想从我的 dll 中导出它: template cla
我是一名优秀的程序员,十分优秀!