Sprout/sprout/operation/fixed/pop_back_n.hpp

47 lines
1.3 KiB
C++
Raw Normal View History

2011-09-01 02:48:32 +00:00
#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/container/traits.hpp>
#include <sprout/container/functions.hpp>
2011-09-01 02:48:32 +00:00
#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
2011-09-03 13:26:26 +00:00
: public sprout::fixed::result_of::erase_n<N, Container>
2011-09-01 02:48:32 +00:00
{};
} // namespace result_of
//
// pop_back_n
//
template<std::size_t N, typename Container>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::pop_back_n<N, Container>::type pop_back_n(
2011-09-01 02:48:32 +00:00
Container const& cont
)
{
return sprout::fixed::detail::erase_n_impl<N, typename sprout::fixed::result_of::pop_back_n<N, Container>::type>(
cont,
2012-05-14 02:33:36 +00:00
sprout::index_range<0, sprout::container_traits<typename sprout::fixed::result_of::pop_back_n<N, Container>::type>::static_size>::make(),
sprout::internal_end_offset(cont) - N
2011-09-01 02:48:32 +00:00
);
}
} // namespace fixed
2011-09-03 13:26:26 +00:00
namespace result_of {
using sprout::fixed::result_of::pop_back_n;
} // namespace result_of
using sprout::fixed::pop_back_n;
2011-09-01 02:48:32 +00:00
} // namespace sprout
#endif // #ifndef SPROUT_OPERATION_FIXED_POP_BACK_N_HPP