Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit a8a4da0b3c.
PrevUpHomeNext

Concept CopyConstructible

CopyConstructible

Description

Copy constructible types must be able to be constructed from another member of the type.

Notation

X
A type playing the role of copy-constructible-type in the CopyConstructible concept.
x, y
Objects of type X

Valid expressions

Name Expression Type Semantics

Copy construction

X(x)

X

Require copy constructor.

Models

  • int

PrevUpHomeNext