__is_object

From RAD Studio
Jump to: navigation, search

Go Up to Type Trait Functions (C++11) Index


Category

Type Trait Functions

Syntax

bool __is_object( typename T)

Returns true if and only if T is an object type.

Defined in Section 3.9 p8 of the Working Draft, essentially:

!__is_reference(T) && !__is_function(T) && !__is_void(T).

See Also