is_trivially_destructible Class

 

The latest version of this topic can be found at is_trivially_destructible Class.

Tests whether the type is trivially destructible.

Syntax

template <class T>  
struct is_trivially_destructible;

Parameters

T
The type to query.

Remarks

An instance of the type predicate holds true if the type T is a destructible type, and the destructor is known to the compiler to use no non-trivial operations. Otherwise, it holds false.

Requirements

Header: <type_traits>

Namespace: std

See Also

<type_traits>