Sprout/sprout/operation/fixed/push_back_n.hpp

55 lines
1.9 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2014-01-08 07:48:12 +00:00
Copyright (c) 2011-2014 Bolero MURAKAMI
2013-08-08 09:54:33 +00:00
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)
=============================================================================*/
2011-09-01 02:48:32 +00:00
#ifndef SPROUT_OPERATION_FIXED_PUSH_BACK_N_HPP
#define SPROUT_OPERATION_FIXED_PUSH_BACK_N_HPP
#include <cstddef>
#include <sprout/config.hpp>
2013-04-06 04:06:51 +00:00
#include <sprout/index_tuple/metafunction.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
2013-03-31 06:14:10 +00:00
#include <sprout/container/indexes.hpp>
2011-09-01 02:48:32 +00:00
#include <sprout/operation/fixed/insert_n.hpp>
namespace sprout {
namespace fixed {
namespace results {
2011-09-01 02:48:32 +00:00
//
// push_back_n
//
template<std::size_t N, typename Container, typename T, typename... Values>
struct push_back_n
: public sprout::fixed::results::insert_n<N, Container, T, Values...>
2011-09-01 02:48:32 +00:00
{};
} // namespace results
2011-09-01 02:48:32 +00:00
//
// push_back_n
//
template<std::size_t N, typename Container, typename T, typename... Values>
inline SPROUT_CONSTEXPR typename sprout::fixed::results::push_back_n<N, Container, T, Values...>::type
2012-10-06 04:53:07 +00:00
push_back_n(Container const& cont, T const& v, Values const&... values) {
return sprout::fixed::detail::insert_n_impl<N, typename sprout::fixed::results::push_back_n<N, Container, T, Values...>::type>(
2011-09-01 02:48:32 +00:00
cont,
sprout::container_indexes<typename sprout::fixed::results::push_back_n<N, Container, T, Values...>::type>::make(),
sprout::internal_end_offset(cont),
2011-09-01 02:48:32 +00:00
v,
values...
);
}
} // namespace fixed
2011-09-03 13:26:26 +00:00
namespace results {
using sprout::fixed::results::push_back_n;
} // namespace results
2011-09-03 13:26:26 +00:00
using sprout::fixed::push_back_n;
2011-09-01 02:48:32 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_OPERATION_FIXED_PUSH_BACK_N_HPP