5 #ifndef VCCC_CONCEPTS_SWAPPABLE_HPP_
6 #define VCCC_CONCEPTS_SWAPPABLE_HPP_
18 struct swappable_impl : std::false_type {};
21 struct swappable_impl<T, true,
void_t<decltype(ranges::
swap(std::declval<T&>(), std::declval<T&>()))>>
constexpr std::enable_if_t< conjunction< is_swappable< T >, is_swappable< U > >::value > swap(compressed_pair< T, U > &lhs, compressed_pair< T, U > &rhs) noexcept(conjunction< is_nothrow_swappable< T >, is_nothrow_swappable< U >>::value)
Definition: compressed_pair.hpp:108
Definition: directory.h:12
constexpr VCCC_INLINE_OR_STATIC detail::element_niebloid< 1 > value
Definition: key_value.hpp:35
specifies that a type can be swapped or that two types can be swapped with each other
Definition: swappable.hpp:37