#ifndef SPROUT_OPERATION_FIXED_POP_BACK_HPP #define SPROUT_OPERATION_FIXED_POP_BACK_HPP #include #include #include #include #include #include #include namespace sprout { namespace fixed { namespace result_of { // // pop_back // template struct pop_back : public sprout::fixed::result_of::erase {}; } // namespace result_of // // pop_back // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::pop_back::type pop_back(Container const& cont) { return sprout::fixed::detail::erase_impl::type>( cont, sprout::container_indexes::type>::make(), sprout::internal_end_offset(cont) - 1 ); } } // namespace fixed namespace result_of { using sprout::fixed::result_of::pop_back; } // namespace result_of using sprout::fixed::pop_back; } // namespace sprout #endif // #ifndef SPROUT_OPERATION_FIXED_POP_BACK_HPP