std::is_object

std::is_object

Defined in header <type_traits>
template< class T >
struct is_object;
(since C++11)

If T is an object type (that is any possibly cv-qualified type other than function, reference, or void types), provides the member constant value equal true. For any other type, value is false.

Template parameters

T