/// \file
// Range v3 library
//
// Copyright Eric Niebler 2014-present
//
// 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
namespace ranges
{
/// \addtogroup group-algorithms
/// @{
template
using reverse_copy_result = detail::in_out_result;
RANGES_BEGIN_NIEBLOID(reverse_copy)
/// \brief function template \c reverse_copy
template
auto RANGES_FUN_NIEBLOID(reverse_copy)(I first, S end_, O out) //
->CPP_ret(reverse_copy_result)( //
requires bidirectional_iterator && sentinel_for &&
weakly_incrementable && indirectly_copyable)
{
I last = ranges::next(first, end_), res = last;
for(; first != last; ++out)
*out = *--last;
return {res, out};
}
/// \overload
template
auto RANGES_FUN_NIEBLOID(reverse_copy)(Rng && rng, O out) //
->CPP_ret(reverse_copy_result, O>)( //
requires bidirectional_range && weakly_incrementable &&
indirectly_copyable, O>)
{
return (*this)(begin(rng), end(rng), std::move(out));
}
RANGES_END_NIEBLOID(reverse_copy)
namespace cpp20
{
using ranges::reverse_copy;
using ranges::reverse_copy_result;
} // namespace cpp20
/// @}
} // namespace ranges
#endif // include guard