19 namespace seqan3::detail
41 template <
template <
typename ...>
typename query_t,
typename ...args_t>
42 struct is_class_template_declarable_with :
49 template <
template <
typename ...>
typename query_t,
typename ...args_t>
51 struct is_class_template_declarable_with<query_t, args_t...> :
public std::true_type
60 template <
template <
typename ...>
typename query_t,
typename ...args_t>
61 inline constexpr
bool is_class_template_declarable_with_v =
62 is_class_template_declarable_with<query_t, args_t...>::value;
The identity transformation (a transformation_trait that returns the input).
Definition: type_traits:87
The <type_traits> header from C++20's standard library.