Checks whether any of the types Ts is a specialization of the class template T
Declared in <mp-units/ext/type_traits.h>
template<
template<typename...> typename T,
typename... Ts>
[[nodiscard]]
consteval
bool
contains();
true if at least one of Ts is a specialization of T, false otherwise
The return value should not be discarded.
| Name | Description |
|---|---|
| T | The class template (taking type parameters) to look for |
| Ts | The types to check |