Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 847 Bytes

is-nothrow-destructible-class.md

File metadata and controls

37 lines (25 loc) · 847 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: is_nothrow_destructible Class
is_nothrow_destructible Class
11/04/2016
type_traits/std::is_nothrow_destructible
is_nothrow_destructible
0bbd8a28-e312-4d72-bd28-aac027f974d3

is_nothrow_destructible Class

Tests whether the type is destructible and the destructor is known to the compiler not to throw.

Syntax

template <class T>
struct is_nothrow_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 not to throw. Otherwise, it holds false.

Requirements

Header: <type_traits>

Namespace: std

See also

<type_traits>