mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
38 lines
1 KiB
C++
38 lines
1 KiB
C++
#ifndef SPROUT_ALGORITHM_FIXED_UNIQUE_HPP
|
|
#define SPROUT_ALGORITHM_FIXED_UNIQUE_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/fixed_container/traits.hpp>
|
|
#include <sprout/fixed_container/functions.hpp>
|
|
#include <sprout/algorithm/fixed/unique_copy.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fixed {
|
|
//
|
|
// unique
|
|
//
|
|
template<typename Container>
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Container>::type unique(
|
|
Container const& cont
|
|
)
|
|
{
|
|
return sprout::fixed::unique_copy(sprout::begin(cont), sprout::end(cont), cont);
|
|
}
|
|
|
|
//
|
|
// unique
|
|
//
|
|
template<typename Container, typename BinaryPredicate>
|
|
SPROUT_CONSTEXPR inline typename sprout::fixed::result_of::algorithm<Container>::type unique(
|
|
Container const& cont,
|
|
BinaryPredicate pred
|
|
)
|
|
{
|
|
return sprout::fixed::unique_copy(sprout::begin(cont), sprout::end(cont), cont, pred);
|
|
}
|
|
} // namespace fixed
|
|
|
|
using sprout::fixed::unique;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_FIXED_UNIQUE_HPP
|