std::
From cppreference.com
Defined in header <type_traits>
|
template< class T > struct ; |
Contents |
Template parameters
T | - | a type to check |
Helper variable template
template< class T > inline constexpr bool _v = <T>::value; |
value [static] |
true if , false otherwise (public static member constant) |
Member functions
operator bool |
converts the object to bool, returns value (public member function) |
operator() (C++14) |
returns value (public member function) |
Member types
Type | Definition |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |