RAD Studio
ContentsIndex
PreviousUpNext
__is_pod

Category 

Type Trait Functions 

Syntax  

bool __is_pod( typename T ) 

Returns true if and only if T is a POD (plain ol' data) type. 

Error if T is an incomplete type. 

POD types are defined in Section 3.9 p10 of the Working Draft. 

POD classes are defined in Section 9 p9 of the Working Draft.  

Effectively __is_trivial_type(T) && is standard_layout(T)

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!