mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
最初
This commit is contained in:
commit
b3bb8121e8
362 changed files with 16820 additions and 0 deletions
42
sprout/operation/fit/push_back.hpp
Normal file
42
sprout/operation/fit/push_back.hpp
Normal file
|
@ -0,0 +1,42 @@
|
|||
#ifndef SPROUT_OPERATION_FIT_PUSH_BACK_HPP
|
||||
#define SPROUT_OPERATION_FIT_PUSH_BACK_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/fixed_container/traits.hpp>
|
||||
#include <sprout/fixed_container/functions.hpp>
|
||||
#include <sprout/operation/fixed/push_back.hpp>
|
||||
#include <sprout/sub_array.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace fit {
|
||||
namespace result_of {
|
||||
//
|
||||
// push_back
|
||||
//
|
||||
template<typename Container, typename T, typename... Values>
|
||||
struct push_back {
|
||||
public:
|
||||
typedef sprout::sub_array<typename sprout::fixed::result_of::push_back<Container, T, Values...>::type> type;
|
||||
};
|
||||
} // namespace result_of
|
||||
|
||||
//
|
||||
// push_back
|
||||
//
|
||||
template<typename Container, typename T, typename... Values>
|
||||
SPROUT_CONSTEXPR inline typename sprout::fit::result_of::push_back<Container, T, Values...>::type push_back(
|
||||
Container const& cont,
|
||||
T const& v,
|
||||
Values const&... values
|
||||
)
|
||||
{
|
||||
return sprout::sub_copy(
|
||||
sprout::fixed::push_back(cont, v, values...),
|
||||
sprout::fixed_begin_offset(cont),
|
||||
sprout::fixed_end_offset(cont) + 1 + sizeof...(Values)
|
||||
);
|
||||
}
|
||||
} // namespace fit
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_OPERATION_FIT_PUSH_BACK_HPP
|
Loading…
Add table
Add a link
Reference in a new issue