std::Copyable

Defined in header <concepts>
template <class T>
concept Copyable =
  std::CopyConstructible<T> &&
  std::Movable<T> &&
  std::Assignable<T&, const T&>;
(since C++20)

The concept Copyable<T> specifies that T is an Movable object type that can also copied (that is, it supports copy construction and copy assignment).

Notes

It is intended that Copyable<T> also requires std::Assignable<T&, const T> (assignment from const rvalue) and std::Assignable<T&, T&> (assignment from non-const lvalue) to be satisfied.

See also

(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.
http://en.cppreference.com/w/cpp/concepts/Copyable