所以我试图获得一个唯一的类型列表,并且我想摆脱我传递的列表可能包含的所有 const 重复项。我认为下面的代码应该可以工作,但 my_set 包含两次“int”。我究竟做错了什么?
#include <boost/mpl/vector.hpp>
#include <boost/mpl/transform.hpp>
#include <boost/type_traits/remove_cv.hpp>
#include <boost/mpl/fold.hpp>
#include <boost/mpl/set.hpp>
#include <boost/mpl/insert.hpp>
#include <boost/mpl/size.hpp>
#include <boost/mpl/assert.hpp>
typedef boost::mpl::vector<float,int,float,const int>::type my_v;
typedef boost::mpl::transform
< my_v
, boost::remove_cv<boost::mpl::_1>::type
>::type my_v2;
typedef boost::mpl::fold
< my_v2
, boost::mpl::set0<>
, boost::mpl::insert
< boost::mpl::_1
, boost::mpl::_2
>
>::type my_set;
BOOST_MPL_ASSERT_RELATION( boost::mpl::size<my_set>::value, ==, 2 ); // Fails