mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
c6bd230ee4
add container/indexes.hpp add tuple/indexes.hpp
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#ifndef SPROUT_OPERATION_FIT_PUSH_FRONT_HPP
|
|
#define SPROUT_OPERATION_FIT_PUSH_FRONT_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/operation/fixed/push_front.hpp>
|
|
#include <sprout/sub_array.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fit {
|
|
namespace result_of {
|
|
//
|
|
// push_front
|
|
//
|
|
template<typename Container, typename T, typename... Values>
|
|
struct push_front {
|
|
public:
|
|
typedef sprout::sub_array<
|
|
typename sprout::container_traits<
|
|
typename sprout::fixed::result_of::push_front<Container, T, Values...>::type
|
|
>::internal_type
|
|
> type;
|
|
};
|
|
} // namespace result_of
|
|
|
|
//
|
|
// push_front
|
|
//
|
|
template<typename Container, typename T, typename... Values>
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::push_front<Container, T, Values...>::type push_front(
|
|
Container const& cont,
|
|
T const& v,
|
|
Values const&... values
|
|
)
|
|
{
|
|
return sprout::sub_copy(
|
|
sprout::get_internal(sprout::fixed::push_front(cont, v, values...)),
|
|
sprout::internal_begin_offset(cont),
|
|
sprout::internal_end_offset(cont) + 1 + sizeof...(Values)
|
|
);
|
|
}
|
|
} // namespace fit
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_OPERATION_FIT_PUSH_FRONT_HPP
|