std::
From cppreference.com
Defined in header <type_traits>
|
||
template< class T > struct ; |
(since C++11) | |
std::
is a UnaryTypeTrait.
no description given
If the program adds specializations for std::is
or std::is_v
, the behavior is undefined.
Contents |
[edit] Template parameters
T | - | a type to check |
[edit] Helper variable template
template< class T > constexpr bool _v =<T>::value; |
(since C++17) | |
Inherited from std::integral_constant
Member constants
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> |