2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_OPERATION_FIXED_PUSH_FRONT_HPP
|
|
|
|
#define SPROUT_OPERATION_FIXED_PUSH_FRONT_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/index_tuple.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <sprout/operation/fixed/insert.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace result_of {
|
|
|
|
//
|
|
|
|
// push_front
|
|
|
|
//
|
|
|
|
template<typename Container, typename T, typename... Values>
|
|
|
|
struct push_front
|
2011-09-03 13:26:26 +00:00
|
|
|
: public sprout::fixed::result_of::insert<Container, T, Values...>
|
2011-09-01 02:48:32 +00:00
|
|
|
{};
|
|
|
|
} // namespace result_of
|
|
|
|
|
|
|
|
//
|
|
|
|
// push_front
|
|
|
|
//
|
|
|
|
template<typename Container, typename T, typename... Values>
|
2012-04-04 13:23:41 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::push_front<Container, T, Values...>::type push_front(
|
2011-09-01 02:48:32 +00:00
|
|
|
Container const& cont,
|
|
|
|
T const& v,
|
|
|
|
Values const&... values
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::fixed::detail::insert_impl<typename sprout::fixed::result_of::push_front<Container, T, Values...>::type>(
|
|
|
|
cont,
|
2012-05-14 02:33:36 +00:00
|
|
|
sprout::index_range<0, sprout::container_traits<typename sprout::fixed::result_of::push_front<Container, T, Values...>::type>::static_size>::make(),
|
2012-03-31 07:24:13 +00:00
|
|
|
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;
|
|
|
|
} // namespace result_of
|
|
|
|
|
|
|
|
using sprout::fixed::push_front;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_OPERATION_FIXED_PUSH_FRONT_HPP
|