2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIXED_COPY_BACKWARD_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIXED_COPY_BACKWARD_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
2011-10-07 07:40:45 +00:00
|
|
|
#include <iterator>
|
|
|
|
#include <type_traits>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/index_tuple.hpp>
|
|
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
|
|
#include <sprout/fixed_container/functions.hpp>
|
2011-10-01 15:19:13 +00:00
|
|
|
#include <sprout/iterator/operation.hpp>
|
2011-09-03 13:26:26 +00:00
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2011-10-27 02:24:47 +00:00
|
|
|
#include <sprout/detail/container_complate_backward.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include HDR_ITERATOR_SSCRISK_CEL_OR_SPROUT_DETAIL
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace detail {
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename RandomAccessIterator, typename Result, std::ptrdiff_t... Indexes>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type copy_backward_impl_ra(
|
|
|
|
RandomAccessIterator first,
|
|
|
|
RandomAccessIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
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-10-30 08:40:35 +00:00
|
|
|
return sprout::remake_clone<Result>(
|
2011-09-03 13:26:26 +00:00
|
|
|
result,
|
|
|
|
sprout::size(result),
|
2011-10-07 07:40:45 +00:00
|
|
|
(Indexes < offset && Indexes + size >= static_cast<std::size_t>(offset) && Indexes + input_size >= static_cast<std::size_t>(offset)
|
2011-10-01 15:19:13 +00:00
|
|
|
? *sprout::next(last, Indexes - offset)
|
|
|
|
: *sprout::next(sprout::fixed_begin(result), Indexes)
|
2011-09-01 02:48:32 +00:00
|
|
|
)...
|
2011-09-03 13:26:26 +00:00
|
|
|
);
|
2011-09-01 02:48:32 +00:00
|
|
|
}
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename RandomAccessIterator, typename Result>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type copy_backward(
|
|
|
|
RandomAccessIterator first,
|
|
|
|
RandomAccessIterator last,
|
|
|
|
Result const& result,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::copy_backward_impl_ra(
|
|
|
|
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)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
template<typename BidirectionalIterator, typename Result, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size == sizeof...(Args),
|
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-10-27 02:24:47 +00:00
|
|
|
>::type copy_backward_impl(
|
2011-10-07 07:40:45 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
|
|
|
Result const& result,
|
2011-10-27 02:24:47 +00:00
|
|
|
typename sprout::fixed_container_traits<Result>::size_type size,
|
2011-10-07 07:40:45 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-30 08:40:35 +00:00
|
|
|
return sprout::remake_clone<Result>(result, sprout::size(result), args...);
|
2011-10-07 07:40:45 +00:00
|
|
|
}
|
|
|
|
template<typename BidirectionalIterator, typename Result, typename... Args>
|
|
|
|
SPROUT_CONSTEXPR inline typename std::enable_if<
|
|
|
|
sprout::fixed_container_traits<Result>::fixed_size != sizeof...(Args),
|
|
|
|
typename sprout::fixed::result_of::algorithm<Result>::type
|
2011-10-27 02:24:47 +00:00
|
|
|
>::type copy_backward_impl(
|
2011-10-07 07:40:45 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
|
|
|
Result const& result,
|
2011-10-27 02:24:47 +00:00
|
|
|
typename sprout::fixed_container_traits<Result>::size_type size,
|
2011-10-07 07:40:45 +00:00
|
|
|
Args const&... args
|
|
|
|
)
|
|
|
|
{
|
2011-10-27 02:24:47 +00:00
|
|
|
return first != last && sizeof...(Args) < size
|
2011-10-28 12:45:00 +00:00
|
|
|
? sprout::fixed::detail::copy_backward_impl(first, sprout::prev(last), result, size, *sprout::prev(last), args...)
|
2011-10-27 02:24:47 +00:00
|
|
|
: sprout::detail::container_complate_backward(result, args...)
|
2011-10-07 07:40:45 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename BidirectionalIterator, typename Result>
|
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type copy_backward(
|
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
|
|
|
Result const& result,
|
|
|
|
void*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::copy_backward_impl(
|
|
|
|
first,
|
|
|
|
last,
|
2011-10-27 02:24:47 +00:00
|
|
|
result,
|
|
|
|
sprout::size(result)
|
2011-10-07 07:40:45 +00:00
|
|
|
);
|
|
|
|
}
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// copy_backward
|
|
|
|
//
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename BidirectionalIterator, typename Result>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Result>::type copy_backward(
|
2011-10-07 07:40:45 +00:00
|
|
|
BidirectionalIterator first,
|
|
|
|
BidirectionalIterator last,
|
2011-09-01 02:48:32 +00:00
|
|
|
Result const& result
|
|
|
|
)
|
|
|
|
{
|
2011-10-07 07:40:45 +00:00
|
|
|
typedef typename std::iterator_traits<BidirectionalIterator>::iterator_category* category;
|
|
|
|
return sprout::fixed::detail::copy_backward(
|
2011-09-01 02:48:32 +00:00
|
|
|
first,
|
|
|
|
last,
|
|
|
|
result,
|
2011-10-07 07:40:45 +00:00
|
|
|
category()
|
2011-09-01 02:48:32 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // 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
|