5 #ifndef VCCC_ITERATOR_INDIRECTLY_COPYABLE_HPP
6 #define VCCC_ITERATOR_INDIRECTLY_COPYABLE_HPP
18 struct indirectly_copyable_impl
19 : indirectly_writable<Out, iter_reference_t<In>> {};
21 template<
typename In,
typename Out>
22 struct indirectly_copyable_impl<In, Out, false> : std::false_type {};
38 template<
typename In,
typename Out>
Definition: directory.h:12
constexpr VCCC_INLINE_OR_STATIC detail::element_niebloid< 1 > value
Definition: key_value.hpp:35
specifies that values may be copied from an indirectly_readable type to an indirectly_writable type
Definition: indirectly_copyable.hpp:39