Namespaces
Variants
Actions

C++ named requirements:CopyAssignable

From cppreference.com
< cpp‎ | named req
 
 
C++ named requirements
 

Specifies that an instance of the type can be copy-assigned from an lvalue expression.

[edit]Requirements

The type T satisfies CopyAssignable if

Given

The following expressions must be valid and have their specified effects.

ExpressionReturn typeReturn valuePost-conditions
t = vT&tThe value of t is equivalent to the value of v.

The value of v is unchanged.

[edit]See also

checks if a type has a copy assignment operator
(class template)[edit]
specifies that a type is assignable from another type
(concept)[edit]
close