mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
|
#ifndef SPROUT_OPERATION_FIXED_POP_BACK_N_HPP
|
||
|
#define SPROUT_OPERATION_FIXED_POP_BACK_N_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/erase_n.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace fixed {
|
||
|
namespace result_of {
|
||
|
//
|
||
|
// pop_back_n
|
||
|
//
|
||
|
template<std::size_t N, typename Container>
|
||
|
struct pop_back_n
|
||
|
: public erase_n<N, Container>
|
||
|
{};
|
||
|
} // namespace result_of
|
||
|
|
||
|
//
|
||
|
// pop_back_n
|
||
|
//
|
||
|
template<std::size_t N, typename Container>
|
||
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::pop_back_n<N, Container>::type pop_back_n(
|
||
|
Container const& cont
|
||
|
)
|
||
|
{
|
||
|
return sprout::fixed::detail::erase_n_impl<N, typename sprout::fixed::result_of::pop_back_n<N, Container>::type>(
|
||
|
cont,
|
||
|
typename sprout::index_range<0, sprout::fixed_container_traits<typename sprout::fixed::result_of::pop_back_n<N, Container>::type>::fixed_size>::type(),
|
||
|
sprout::fixed_end_offset(cont) - N
|
||
|
);
|
||
|
}
|
||
|
} // namespace fixed
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_OPERATION_FIXED_POP_BACK_N_HPP
|