19 namespace seqan3::detail
41 template <
template <
typename ...>
typename query_t,
typename ...args_t>
42 struct is_class_template_declarable_with :
44 public std::false_type
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:71
Provides C++20 additions to the type_traits header.