2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_OPERATION_FIXED_POP_BACK_HPP
|
|
|
|
#define SPROUT_OPERATION_FIXED_POP_BACK_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/index_tuple.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <sprout/operation/fixed/erase.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
namespace result_of {
|
|
|
|
//
|
|
|
|
// pop_back
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
struct pop_back
|
2011-09-03 13:26:26 +00:00
|
|
|
: public sprout::fixed::result_of::erase<Container>
|
2011-09-01 02:48:32 +00:00
|
|
|
{};
|
|
|
|
} // namespace result_of
|
|
|
|
|
|
|
|
//
|
|
|
|
// pop_back
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::pop_back<Container>::type
|
|
|
|
pop_back(Container const& cont) {
|
2011-09-01 02:48:32 +00:00
|
|
|
return sprout::fixed::detail::erase_impl<typename sprout::fixed::result_of::pop_back<Container>::type>(
|
|
|
|
cont,
|
2012-10-06 04:53:07 +00:00
|
|
|
sprout::index_range<
|
|
|
|
0,
|
|
|
|
sprout::container_traits<typename sprout::fixed::result_of::pop_back<Container>::type>::static_size
|
|
|
|
>::make(),
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::internal_end_offset(cont) - 1
|
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;
|
|
|
|
} // namespace result_of
|
|
|
|
|
|
|
|
using sprout::fixed::pop_back;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_OPERATION_FIXED_POP_BACK_HPP
|