#ifndef SPROUT_OPERATION_FIXED_POP_BACK_N_HPP #define SPROUT_OPERATION_FIXED_POP_BACK_N_HPP #include #include #include #include #include #include namespace sprout { namespace fixed { namespace result_of { // // pop_back_n // template struct pop_back_n : public sprout::fixed::result_of::erase_n {}; } // namespace result_of // // pop_back_n // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::pop_back_n::type pop_back_n( Container const& cont ) { return sprout::fixed::detail::erase_n_impl::type>( cont, sprout::index_range<0, sprout::container_traits::type>::static_size>::make(), sprout::internal_end_offset(cont) - N ); } } // namespace fixed namespace result_of { using sprout::fixed::result_of::pop_back_n; } // namespace result_of using sprout::fixed::pop_back_n; } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_POP_BACK_N_HPP