28template <
typename... types>
35 static constexpr size_t size() noexcept {
return sizeof...(types); }
44namespace bio::meta::detail
49inline constexpr bool is_type_list =
false;
52template <
typename... ts>
53inline constexpr bool is_type_list<type_list<ts...>> =
true;
Provides various traits to inspect templates.