Difference between revisions of "cpp/named req/CopyAssignable"
From cppreference.com
m (fix redlink) |
(match std) |
||
Line 2: | Line 2: | ||
{{cpp/concept/navbar}} | {{cpp/concept/navbar}} | ||
− | Specifies that an instance of the type can be copy-assigned | + | Specifies that an instance of the type can be copy-assigned. |
− | + | ||
− | + | ||
===Requirements=== | ===Requirements=== | ||
− | The type | + | The type {{tt|T}} satisfies {{tt|CopyAssignable}} if |
− | + | ||
− | {{ | + | |
− | {{ | + | * The type {{tt|T}} satisfies {{concept|MoveAssignable}}, and |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | }} | + | |
− | [[cpp/language/ | + | Given |
+ | * {{tt|v}}, an [[cpp/language/value_category|lvalue]] expression of type {{tt|T}} or {{tt|const T}} or an [[cpp/language/value_category|rvalue]] expression of type {{tt|const T}} | ||
− | The following expressions must have | + | The following expressions must be valid and have their specified effects |
− | { | + | {|table class=wikitable |
− | + | |- | |
− | + | !Expression||Return type||Return value||Post-conditions | |
− | + | |- | |
− | + | | {{c|1=t = v}} | |
+ | | {{tt|T&}} | ||
+ | | {{tt|t}} | ||
+ | | The value of {{tt|t}} is equivalent to the value of {{tt|v}}. | ||
+ | The value of {{tt|v}} is unchanged. | ||
+ | |} | ||
===See also=== | ===See also=== |
Revision as of 12:00, 28 December 2013
Template:cpp/concept/title Template:cpp/concept/navbar
Specifies that an instance of the type can be copy-assigned.
Requirements
The type T
satisfies CopyAssignable
if
- The type
T
satisfies Template:concept, and
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 |
See also
(C++11)(C++11)(C++11) |
checks if a type has a copy assignment operator (class template) |