2011-09-03 13:26:26 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_FIT_COPY_N_HPP
|
|
|
|
#define SPROUT_ALGORITHM_FIT_COPY_N_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
|
|
#include <sprout/fixed_container/functions.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/copy_n.hpp>
|
|
|
|
#include <sprout/algorithm/fit/result_of.hpp>
|
|
|
|
#include <sprout/sub_array.hpp>
|
|
|
|
#include HDR_ALGORITHM_SSCRISK_CEL_OR_SPROUT_DETAIL
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fit {
|
|
|
|
namespace detail {
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename InputIterator, typename Size, typename Result>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type copy_n_impl(
|
2011-10-07 07:40:45 +00:00
|
|
|
InputIterator first,
|
2011-09-03 13:26:26 +00:00
|
|
|
Size n,
|
|
|
|
Result const& result,
|
|
|
|
typename sprout::fixed_container_traits<Result>::difference_type offset
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::sub_copy(
|
|
|
|
sprout::get_fixed(sprout::fixed::copy_n(first, n, result)),
|
|
|
|
offset,
|
|
|
|
offset + NS_SSCRISK_CEL_OR_SPROUT_DETAIL::min(n, sprout::size(result))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// copy_n
|
|
|
|
//
|
2011-10-07 07:40:45 +00:00
|
|
|
template<typename InputIterator, typename Size, typename Result>
|
2011-09-03 13:26:26 +00:00
|
|
|
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::algorithm<Result>::type copy_n(
|
2011-10-07 07:40:45 +00:00
|
|
|
InputIterator first,
|
2011-09-03 13:26:26 +00:00
|
|
|
Size n,
|
|
|
|
Result const& result
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fit::detail::copy_n_impl(first, n, result, sprout::fixed_begin_offset(result));
|
|
|
|
}
|
|
|
|
} // namespace fit
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIT_COPY_N_HPP
|