2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_COPY_BACKWARD_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_COPY_BACKWARD_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/index_tuple.hpp>
|
|
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
|
|
#include <sprout/fixed_container/functions.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
|
|
|
template<typename Iterator, typename Result, std::ptrdiff_t... Indexes>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type copy_backward_impl(
|
2011-09-01 02:48:32 +00:00
|
|
|
Iterator first,
|
|
|
|
Iterator last,
|
|
|
|
Result const& result,
|
|
|
|
sprout::index_tuple<Indexes...>,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset,
|
|
|
|
typename sprout::fixed_container_traits<Result>::size_type size,
|
|
|
|
typename sprout::fixed_container_traits<Result>::size_type input_size
|
|
|
|
)
|
|
|
|
{
|
2011-09-03 13:26:26 +00:00
|
|
|
return sprout::remake_clone<Result, Result>(
|
|
|
|
result,
|
|
|
|
sprout::size(result),
|
2011-09-01 02:48:32 +00:00
|
|
|
(Indexes < offset && Indexes + size >= offset && Indexes + input_size >= offset
|
|
|
|
? *(last + Indexes - offset)
|
|
|
|
: *(sprout::fixed_begin(result) + Indexes)
|
|
|
|
)...
|
2011-09-03 13:26:26 +00:00
|
|
|
);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// copy_backward
|
|
|
|
//
|
|
|
|
template<typename Iterator, typename Result>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type copy_backward(
|
2011-09-01 02:48:32 +00:00
|
|
|
Iterator first,
|
|
|
|
Iterator last,
|
|
|
|
Result const& result
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::copy_backward_impl(
|
|
|
|
first,
|
|
|
|
last,
|
|
|
|
result,
|
|
|
|
typename sprout::index_range<0, sprout::fixed_container_traits<Result>::fixed_size>::type(),
|
|
|
|
sprout::fixed_end_offset(result),
|
|
|
|
sprout::size(result),
|
|
|
|
NS_SSCRISK_CEL_OR_SPROUT_DETAIL::distance(first, last)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace fixed
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
using sprout::fixed::copy_backward;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_COPY_BACKWARD_HPP
|