mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
34 lines
933 B
C++
34 lines
933 B
C++
#ifndef SPROUT_ALGORITHM_FIXED_COPY_N_HPP
|
|
#define SPROUT_ALGORITHM_FIXED_COPY_N_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
#include <sprout/fixed_container/functions.hpp>
|
|
#include <sprout/algorithm/fixed/copy.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fixed {
|
|
//
|
|
// copy_n
|
|
//
|
|
template<typename Iterator, typename Size, typename Result>
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits<Result>::fixed_container_type copy_n(
|
|
Iterator first,
|
|
Size n,
|
|
Result const& result
|
|
)
|
|
{
|
|
return sprout::fixed::detail::copy_impl(
|
|
first,
|
|
first + n,
|
|
result,
|
|
typename sprout::index_range<0, sprout::fixed_container_traits<Result>::fixed_size>::type(),
|
|
sprout::fixed_begin_offset(result),
|
|
sprout::size(result),
|
|
n
|
|
);
|
|
}
|
|
} // namespace fixed
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_COPY_N_HPP
|