Sprout/sprout/operation/fixed/push_front_n.hpp

55 lines
1.9 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 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)
=============================================================================*/
2011-09-01 02:48:32 +00:00
#ifndef SPROUT_OPERATION_FIXED_PUSH_FRONT_N_HPP
#define SPROUT_OPERATION_FIXED_PUSH_FRONT_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 result_of {
//
// push_front_n
//
template<std::size_t N, typename Container, typename T, typename... Values>
struct push_front_n
2011-09-03 13:26:26 +00:00
: public sprout::fixed::result_of::insert_n<N, Container, T, Values...>
2011-09-01 02:48:32 +00:00
{};
} // namespace result_of
//
// push_front_n
//
template<std::size_t N, typename Container, typename T, typename... Values>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::push_front_n<N, Container, T, Values...>::type
push_front_n(Container const& cont, T const& v, Values const&... values) {
2011-09-01 02:48:32 +00:00
return sprout::fixed::detail::insert_n_impl<N, typename sprout::fixed::result_of::push_front_n<N, Container, T, Values...>::type>(
cont,
2013-03-31 06:14:10 +00:00
sprout::container_indexes<typename sprout::fixed::result_of::push_front_n<N, Container, T, Values...>::type>::make(),
sprout::internal_begin_offset(cont),
2011-09-01 02:48:32 +00:00
v,
values...
);
}
} // namespace fixed
2011-09-03 13:26:26 +00:00
namespace result_of {
using sprout::fixed::result_of::push_front_n;
} // namespace result_of
using sprout::fixed::push_front_n;
2011-09-01 02:48:32 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_OPERATION_FIXED_PUSH_FRONT_N_HPP