/// \file
// Range v3 library
//
// Copyright Eric Niebler 2014
//
// Use, modification and distribution is subject to the
// Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Project home: https://github.com/ericniebler/range-v3
//
#ifndef RANGES_V3_ALGORITHM_REVERSE_COPY_HPP
#define RANGES_V3_ALGORITHM_REVERSE_COPY_HPP
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
namespace ranges
{
inline namespace v3
{
/// \ingroup group-concepts
template
using ReverseCopyable = meta::strict_and<
BidirectionalIterator,
WeaklyIncrementable,
IndirectlyCopyable>;
/// \addtogroup group-algorithms
/// @{
struct reverse_copy_fn
{
template() && ReverseCopyable())>
tagged_pair operator()(I begin, S end_, O out) const
{
I end = ranges::next(begin, end_), res = end;
for (; begin != end; ++out)
*out = *--end;
return {res, out};
}
template,
CONCEPT_REQUIRES_(Range() && ReverseCopyable())>
tagged_pair), tag::out(O)> operator()(Rng &&rng, O out) const
{
return (*this)(begin(rng), end(rng), std::move(out));
}
};
/// \sa `reverse_copy_fn`
/// \ingroup group-algorithms
RANGES_INLINE_VARIABLE(with_braced_init_args,
reverse_copy)
/// @}
} // namespace v3
} // namespace ranges
#endif // include guard