C++ named requirements: CopyAssignable

From cppreference.com
< cpp‎ | named req
 
 
C++ named requirements
Basic
CopyAssignable
Type properties
Library-Wide
Container
Container Elements
(C++11)

Iterator
Stream I/O
Formatters
(C++20)
Random Numbers
(C++11)    
Concurrency
(C++11)
(C++11)
Ranges
Other
(C++11)


 

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

Requirements

The type T satisfies CopyAssignable if

Given

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

Expression Return type Return value Post-conditions
t = v T& t The value of t is equivalent to the value of v.

The value of v is unchanged.

See also

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