std::copyable - cppreference.com
From cppreference.com
|
|
(since C++20) | |
The concept copyable<T> specifies that T is a movable object type that can also be copied (that is, it supports copy construction and copy assignment).
References
- C++23 standard (ISO/IEC 14882:2024):
- 18.6 Object concepts [concepts.object]
- C++20 standard (ISO/IEC 14882:2020):
- 18.6 Object concepts [concepts.object]
See also
| specifies that an object of a type can be moved and swapped (concept) [edit] |