在对mpl::vector
执行mpl::find<seq,type>
后,是否可以获得#include <vector>
#include <algorithm>
#include <iostream>
int main()
{
typedef std::vector<int> v_type;
v_type v_int(3);
v_int[0] = 1;
v_int[1] = 2;
v_int[2] = 3;
v_type::iterator it= std::find( v_int.begin() ,v_int.end(),3);
std::cout << it - v_int.begin() << std::endl;
}
的偏移量?
换句话说我想做的编译时间等于:
mpl::vector
如果失败了,我type_trait<T>::ordinal
中的类型会有boost::variant
const硬编码,如果可能,我想避免这种情况。
重要提示,我也是从向量中创建variant::which()
,我看到我可以通过执行运行时函数{{1}}来获取序数。但是,这需要我使用默认初始化值创建一个虚拟对象。这非常糟糕。如果您了解使用变体的其他方法,那么这也是我的问题的解决方案。
答案 0 :(得分:3)
如果您正在寻找的是一种indexOf功能,我想Boost.MPL doc中有关find
的示例将会起到作用:
typedef vector<char,int,unsigned,long,unsigned long> types;
typedef find<types,unsigned>::type iter;
BOOST_MPL_ASSERT(( is_same< deref<iter>::type, unsigned > ));
BOOST_MPL_ASSERT_RELATION( iter::pos::value, ==, 2 );
答案 1 :(得分:1)
迭代器类别中有一个元函数可以做到这一点,它被称为distance。
p p。,很快就回答我自己的问题而道歉。我只是偶然发现了解决方案。