Defined in header <concepts> | ||
---|---|---|
template <class T> concept copyable = std::copy_constructible<T> && std::movable<T> && std::assignable_from<T&, T&> && std::assignable_from<T&, const T&> && std::assignable_from<T&, const T>; | (since C++20) |
The concept copyable<T>
specifies that T
is a movable
object type that can also copied (that is, it supports copy construction and copy assignment).
(C++20) | specifies that an object of a type can be moved and swapped (concept) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/concepts/copyable