mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
107 lines
4 KiB
C++
107 lines
4 KiB
C++
/*=============================================================================
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
=============================================================================*/
|
|
#ifndef SPROUT_OPERATION_FIXED_INSERT_N_HPP
|
|
#define SPROUT_OPERATION_FIXED_INSERT_N_HPP
|
|
|
|
#include <type_traits>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/container/indexes.hpp>
|
|
#include <sprout/iterator/operation.hpp>
|
|
#include <sprout/operation/fixed/insert.hpp>
|
|
#include <sprout/detail/param_at.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fixed {
|
|
namespace results {
|
|
//
|
|
// insert_n
|
|
//
|
|
template<std::size_t N, typename Container, typename T, typename... Values>
|
|
struct insert_n
|
|
: public sprout::container_transform_traits<
|
|
Container
|
|
>::template rebind_size<
|
|
sprout::container_traits<Container>::static_size + (1 + sizeof...(Values)) * N
|
|
>
|
|
{};
|
|
} // namespace results
|
|
|
|
namespace detail {
|
|
template<std::size_t N, typename Result, typename Container, typename T, typename... Values, sprout::index_t... Indexes>
|
|
inline SPROUT_CONSTEXPR Result
|
|
insert_n_impl(
|
|
Container const& cont, sprout::index_tuple<Indexes...>,
|
|
typename sprout::container_traits<Container>::difference_type pos, T const& v, Values const&... values
|
|
)
|
|
{
|
|
return sprout::remake<Result>(
|
|
cont,
|
|
sprout::size(cont) + (1 + sizeof...(Values)) * N,
|
|
(Indexes < sprout::container_traits<Container>::static_size + (1 + sizeof...(Values)) * N
|
|
? (Indexes < pos ? *(sprout::internal_begin(cont) + Indexes)
|
|
: Indexes < pos + (1 + sizeof...(Values)) * N
|
|
? sprout::detail::param_at<typename sprout::container_traits<Result>::value_type>(
|
|
(Indexes - pos) % (1 + sizeof...(Values)), v, values...
|
|
)
|
|
: *sprout::next(sprout::internal_begin(cont), Indexes - (1 + sizeof...(Values)) * N)
|
|
)
|
|
: typename sprout::container_traits<Result>::value_type()
|
|
)...
|
|
);
|
|
}
|
|
} // namespace detail
|
|
//
|
|
// insert_n
|
|
//
|
|
template<std::size_t N, typename Container, typename T, typename... Values>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::insert_n<N, Container, T, Values...>::type
|
|
insert_n(
|
|
Container const& cont, typename sprout::container_traits<Container>::const_iterator pos,
|
|
T const& v, Values const&... values
|
|
)
|
|
{
|
|
return sprout::fixed::detail::insert_n_impl<N, typename sprout::fixed::results::insert_n<N, Container, T, Values...>::type>(
|
|
cont,
|
|
sprout::container_indexes<typename sprout::fixed::results::insert_n<N, Container, T, Values...>::type>::make(),
|
|
sprout::distance(sprout::internal_begin(cont), pos),
|
|
v,
|
|
values...
|
|
);
|
|
}
|
|
//
|
|
// insert_n
|
|
//
|
|
template<std::size_t N, typename Container, typename T, typename... Values>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::insert_n<N, Container, T, Values...>::type
|
|
insert_n(
|
|
Container const& cont, typename sprout::container_traits<Container>::difference_type pos,
|
|
T const& v, Values const&... values
|
|
)
|
|
{
|
|
return sprout::fixed::detail::insert_n_impl<N, typename sprout::fixed::results::insert_n<N, Container, T, Values...>::type>(
|
|
cont,
|
|
sprout::container_indexes<typename sprout::fixed::results::insert_n<N, Container, T, Values...>::type>::make(),
|
|
sprout::distance(sprout::internal_begin(cont), sprout::next(sprout::begin(cont), pos)),
|
|
v,
|
|
values...
|
|
);
|
|
}
|
|
} // namespace fixed
|
|
|
|
namespace results {
|
|
using sprout::fixed::results::insert_n;
|
|
} // namespace results
|
|
|
|
using sprout::fixed::insert_n;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_OPERATION_FIXED_INSERT_N_HPP
|