mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2024-11-12 21:09:01 +00:00
35 lines
933 B
C++
35 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
|