Difference between revisions of "cpp/named req/CopyConstructible"
From cppreference.com
(CopyConstructible always meets MoveConstructible) |
|||
Line 5: | Line 5: | ||
===Requirements=== | ===Requirements=== | ||
− | |||
− | |||
The type must implement the following functions: | The type must implement the following functions: |
Revision as of 06:43, 11 March 2012
Template:cpp/concept/title Template:cpp/concept/sidebar
Specifies that an instance of the type can be copy-constructed (copied).
Requirements
The type must implement the following functions:
Type::Type
Type::Type( const Type& other ); |
||
Copy constructor: constructs an instance of a type with the contents of other
. The internal state of other
is not modified.
The following expressions must have the specified effects:
Template:tdcl list begin Template:tdcl list hitem Template:tdcl list item Template:tdcl list item Template:tdcl list end