Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 832 Bytes

is-trivially-destructible-class.md

File metadata and controls

37 lines (25 loc) · 832 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: is_trivially_destructible Class
is_trivially_destructible Class
11/04/2016
type_traits/std::is_trivially_destructible
is_trivially_destructible
3f7a787d-2448-40c5-ac51-a228318e02ce

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>