fusion::vector
から生成する方法はmpl::vector
? mpl::vector
から生成する方法はfusion::vector
?
BOOST_MPL_ASSERT((is_same<
fusion::vector<int, char>,
generate_fusion_vector<mpl::vector<int, char> >::type >));
BOOST_MPL_ASSERT((is_same<
mpl::vector<int, char>,
generate_mpl_vector<fusion::vector<int, char> >::type >));
generate_fusion_vector
とgenerate_mpl_vector
メタ関数が必要です。私は独自のメタ関数を書くことができますが、それらは既に存在していると思われます。
fusion::map
以前にhelpで生成した経験がありresult_of::as_map
ましたが、現在のboost(trunk、1.39も)ではこんなエラーが出ます。
D:\Libraries\boost_trunk\boost/fusion/sequence/intrinsic/size.hpp(56) : error C2903: 'apply' : symbol is neither a class template nor a function template
D:\Libraries\boost_trunk\boost/fusion/container/vector/convert.hpp(23) : see reference to class template instantiation 'boost::fusion::result_of::size' being compiled
with
[
Sequence=boost::mpl::vector
]
temp.cpp(71) : see reference to class template instantiation 'boost::fusion::result_of::as_vector' being compiled
私は何が起こっているのか理解できませんか?