我在编译以下内容时遇到了麻烦(我是 fusion 的新手)。特别是,我不确定“_”(在 is_same 中)来自哪里?从 boost::lambda? 升压::mpl?我需要哪些内容才能编译?
template <typename T>
struct check
{
const T& value;
check(const T& v) : value(v) {}
template <typename X>
bool operator()(const fusion::pair<X,T>& data) const
{
return data.second == value;
}
};
template <typename T1, typename T2, typename P>
bool new_match(const P& p, const T2& values)
{
fusion::for_each(fusion::filter_if<boost::is_same<_, T2> >(p), check(values));
return true; // not finished, just trying to compile
}
谢谢!