Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The latest version of this topic can be found at is_nothrow_copy_assignable Class.
Tests whether type has a copy assignment operator that is known to the compiler not to throw.
Syntax
template <class T>
struct is_nothrow_copy_assignable;
Parameters
T
The type to query.
Remarks
An instance of the type predicate holds true for a referenceable type T where is_nothrow_assignable<T&, const T&> holds true; otherwise it holds false.
Requirements
Header: <type_traits>
Namespace: std