mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
#ifndef SPROUT_OPERATION_FIXED_PUSH_BACK_HPP
|
|
#define SPROUT_OPERATION_FIXED_PUSH_BACK_HPP
|
|
|
|
#include <cstddef>
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/index_tuple.hpp>
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
#include <sprout/fixed_container/functions.hpp>
|
|
#include <sprout/operation/fixed/insert.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fixed {
|
|
namespace result_of {
|
|
//
|
|
// push_back
|
|
//
|
|
template<typename Container, typename T, typename... Values>
|
|
struct push_back
|
|
: public sprout::fixed::result_of::insert<Container, T, Values...>
|
|
{};
|
|
} // namespace result_of
|
|
|
|
//
|
|
// push_back
|
|
//
|
|
template<typename Container, typename T, typename... Values>
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::push_back<Container, T, Values...>::type push_back(
|
|
Container const& cont,
|
|
T const& v,
|
|
Values const&... values
|
|
)
|
|
{
|
|
return sprout::fixed::detail::insert_impl<typename sprout::fixed::result_of::push_back<Container, T, Values...>::type>(
|
|
cont,
|
|
typename sprout::index_range<0, sprout::fixed_container_traits<typename sprout::fixed::result_of::push_back<Container, T, Values...>::type>::fixed_size>::type(),
|
|
sprout::fixed_end_offset(cont),
|
|
v,
|
|
values...
|
|
);
|
|
}
|
|
} // namespace fixed
|
|
|
|
namespace result_of {
|
|
using sprout::fixed::result_of::push_back;
|
|
} // namespace result_of
|
|
|
|
using sprout::fixed::push_back;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_OPERATION_FIXED_PUSH_BACK_HPP
|