mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
48 lines
1.7 KiB
C++
48 lines
1.7 KiB
C++
#ifndef SPROUT_ALGORITHM_FIT_ROTATE_COPY_HPP
|
|
#define SPROUT_ALGORITHM_FIT_ROTATE_COPY_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
#include <sprout/fixed_container/functions.hpp>
|
|
#include <sprout/algorithm/fixed/rotate_copy.hpp>
|
|
#include <sprout/algorithm/fit/result_of.hpp>
|
|
#include <sprout/sub_array.hpp>
|
|
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT_DETAIL
|
|
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL
|
|
|
|
namespace sprout {
|
|
namespace fit {
|
|
namespace detail {
|
|
template<typename ForwardIterator, typename Result>
|
|
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type rotate_copy_impl(
|
|
ForwardIterator first,
|
|
ForwardIterator middle,
|
|
ForwardIterator last,
|
|
Result const& result,
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset
|
|
)
|
|
{
|
|
return sprout::sub_copy(
|
|
sprout::get_fixed(sprout::fixed::rotate_copy(first, middle, last, result)),
|
|
offset,
|
|
offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min(NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(first, last), sprout::size(result))
|
|
);
|
|
}
|
|
} // namespace detail
|
|
//
|
|
// rotate_copy
|
|
//
|
|
template<typename ForwardIterator, typename Result>
|
|
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type rotate_copy(
|
|
ForwardIterator first,
|
|
ForwardIterator middle,
|
|
ForwardIterator last,
|
|
Result const& result
|
|
)
|
|
{
|
|
return sprout::fit::detail::rotate_copy_impl(first, middle, last, result, sprout::fixed_begin_offset(result));
|
|
}
|
|
} // namespace fit
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIT_ROTATE_COPY_HPP
|