2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
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)
|
|
|
|
=============================================================================*/
|
2011-09-01 02:48:32 +00:00
|
|
|
#ifndef SPROUT_OPERATION_FIXED_POP_BACK_HPP
|
|
|
|
#define SPROUT_OPERATION_FIXED_POP_BACK_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2014-04-30 07:30:26 +00:00
|
|
|
#include <sprout/workaround/std/cstddef.hpp>
|
2013-04-06 04:06:51 +00:00
|
|
|
#include <sprout/index_tuple/metafunction.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2013-03-31 06:14:10 +00:00
|
|
|
#include <sprout/container/indexes.hpp>
|
2011-09-01 02:48:32 +00:00
|
|
|
#include <sprout/operation/fixed/erase.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
2013-11-20 13:04:11 +00:00
|
|
|
namespace results {
|
2011-09-01 02:48:32 +00:00
|
|
|
//
|
|
|
|
// pop_back
|
|
|
|
//
|
|
|
|
template<typename Container>
|
|
|
|
struct pop_back
|
2013-11-20 13:04:11 +00:00
|
|
|
: public sprout::fixed::results::erase<Container>
|
2011-09-01 02:48:32 +00:00
|
|
|
{};
|
2013-11-20 13:04:11 +00:00
|
|
|
} // namespace results
|
2011-09-01 02:48:32 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// pop_back
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2013-11-20 13:04:11 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::results::pop_back<Container>::type
|
2012-10-06 04:53:07 +00:00
|
|
|
pop_back(Container const& cont) {
|
2013-11-20 13:04:11 +00:00
|
|
|
return sprout::fixed::detail::erase_impl<typename sprout::fixed::results::pop_back<Container>::type>(
|
2011-09-01 02:48:32 +00:00
|
|
|
cont,
|
2013-11-20 13:04:11 +00:00
|
|
|
sprout::container_indexes<typename sprout::fixed::results::pop_back<Container>::type>::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
|
|
|
|
2013-11-20 13:04:11 +00:00
|
|
|
namespace results {
|
|
|
|
using sprout::fixed::results::pop_back;
|
|
|
|
} // namespace results
|
2011-09-03 13:26:26 +00:00
|
|
|
|
|
|
|
using sprout::fixed::pop_back;
|
2011-09-01 02:48:32 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_OPERATION_FIXED_POP_BACK_HPP
|