5 #ifndef VCCC_CONCEPTS_COPYABLE_HPP_
6 #define VCCC_CONCEPTS_COPYABLE_HPP_
22 copy_constructible<T>,
24 assignable_from<T&, T&>,
25 assignable_from<T&, const T&>,
26 assignable_from<T&, const T>
30 struct copyable_impl<T, false> : std::false_type {};
Definition: directory.h:12
constexpr VCCC_INLINE_OR_STATIC detail::element_niebloid< 1 > value
Definition: key_value.hpp:35
specifies that an object of a type can be copied, moved, and swapped
Definition: copyable.hpp:59