/*============================================================================= Copyright (c) 2011-2013 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_OPERATION_FIXED_POP_BACK_N_HPP #define SPROUT_OPERATION_FIXED_POP_BACK_N_HPP #include #include #include #include #include #include #include namespace sprout { namespace fixed { namespace results { // // pop_back_n // template struct pop_back_n : public sprout::fixed::results::erase_n {}; } // namespace results // // pop_back_n // template inline SPROUT_CONSTEXPR typename sprout::fixed::results::pop_back_n::type pop_back_n(Container const& cont) { return sprout::fixed::detail::erase_n_impl::type>( cont, sprout::container_indexes::type>::make(), sprout::internal_end_offset(cont) - N ); } } // namespace fixed namespace results { using sprout::fixed::results::pop_back_n; } // namespace results using sprout::fixed::pop_back_n; } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_POP_BACK_N_HPP