mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
c6bd230ee4
add container/indexes.hpp add tuple/indexes.hpp
28 lines
884 B
C++
28 lines
884 B
C++
#ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_HPP
|
|
#define SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/container/traits.hpp>
|
|
#include <sprout/container/functions.hpp>
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
|
#include <sprout/algorithm/fixed/stable_partition_copy.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fixed {
|
|
//
|
|
// stable_partition
|
|
//
|
|
template<typename Container, typename Predicate>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Container>::type stable_partition(
|
|
Container const& cont,
|
|
Predicate pred
|
|
)
|
|
{
|
|
return sprout::fixed::stable_partition_copy(sprout::begin(cont), sprout::end(cont), cont, pred);
|
|
}
|
|
} // namespace fixed
|
|
|
|
using sprout::fixed::stable_partition;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_STABLE_PARTITION_HPP
|