mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
#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>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/operation/fixed/erase.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fixed {
|
|
namespace result_of {
|
|
//
|
|
// pop_back
|
|
//
|
|
template<typename Container>
|
|
struct pop_back
|
|
: public sprout::fixed::result_of::erase<Container>
|
|
{};
|
|
} // namespace result_of
|
|
|
|
//
|
|
// pop_back
|
|
//
|
|
template<typename Container>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::pop_back<Container>::type pop_back(
|
|
Container const& cont
|
|
)
|
|
{
|
|
return sprout::fixed::detail::erase_impl<typename sprout::fixed::result_of::pop_back<Container>::type>(
|
|
cont,
|
|
sprout::index_range<0, sprout::container_traits<typename sprout::fixed::result_of::pop_back<Container>::type>::static_size>::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
|