description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: is_nothrow_default_constructible Class |
is_nothrow_default_constructible Class |
11/04/2016 |
|
|
c576fcc9-5be1-43aa-b93a-64d3f1848887 |
Tests whether type has a non-throwing default constructor.
template <class Ty>
struct is_nothrow_default_constructible;
Ty
The type to query.
An instance of the type predicate holds true if the type Ty has a nothrow default constructor, otherwise it holds false. An instance of the type predicate is equivalent to is_nothrow_constructible<Ty>
.
Header: <type_traits>
Namespace: std