给定以下代码,用 Boost hana 表达相同功能的合适方法是什么?
#include <type_traits>
#include <boost/hana/type.hpp>
#include <boost/hana/core/when.hpp>
namespace hana = boost::hana;
struct S {
template<
typename T,
typename = typename std::enable_if_t< (T::value) > > // <-- equivalent?
S (const T&) { }
};
struct X { static constexpr int value = 0; };
struct Y { static constexpr int value = 1; };
int main () {
S a (X { }); // <-- must fail
S b (Y { });
return 0;
}
文档when
提到它作为替代品,enable_if
但我不确定如何在这种情况下应用它。那么,如何使用 Boost hana 选择性地启用模板构造函数?