RAD Studio
ContentsIndex
PreviousUpNext
__has_nothrow_assign

Category 

Type Trait Functions 

Syntax 

bool __has_nothrow_assign ( typename T ) 

Returns true if and only if compiler can prove T has a copy assignment operator that it cannot throw. 

True if __has_trivial_assign(T). 

Also true if copy assignment operator has an empty exception specification. 

Ox interaction false if copy assignment is defined as deleted. 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!