假设我有 2 个未实例化的元组。有没有一种惯用的方法来检查一组是否是另一组的子集?
如果这需要另一种类型而不是hana::tuple_c
,这也很好。实际上,我当前的输入由 组成std::tuple
,但我无法让它工作。
不起作用的代码(但我觉得应该有类似的可能):
#include <boost/hana.hpp>
using namespace boost;
using SetA = hana::tuple_c<int, char, float>;
using SetB = hana::tuple_c<int, float>;
static_assert(
hana::is_subset( SetB, SetA ),
""
);
我目前的解决方法boost::mpl
是做一个交集,然后比较结果。这可行,但我对纯boost::hana
解决方案感兴趣:
#include <boost/mpl.hpp>
using namespace boost;
using SetA = mpl::set<int, char, float>;
using SetB = mpl::set<int, float>;
using Intersection = typename mpl::copy_if<
SetA,
mpl::has_key< SetB, mpl::_1 >,
mpl::back_inserter< mpl::vector<> >
>::type;
// since Intersection is a vector, subset also needs vector type
using Subset = typename mpl::copy<
SetB,
mpl::back_inserter< mpl::vector<> >
>::type;
static_assert(std::is_same<Intersection, Subset>::value, "");