2
나는 boost :: hana :: set 타입을 가지고 있으며 값이 bool 인 맵을 생성하려고합니다. hana::Foldable
그래서 당신이 hana::unpack
을 사용할 수 있습니다boost hana : 집합과 기본값으로 맵 생성
// I have a hana set:
auto my_set = hana::make_set(hana::type_c<int>, hana::type_c<float> ...);
// and want to transform it to a map with a given runtime value as values:
auto wanted_map = hana::make_map(
hana::make_pair(hana::type_c<int>, false),
hana::make_pair(hana::type_c<float>, false),
...
);
좋아요, 감사합니다! :-디 –