Sprout/sprout/algorithm/fixed/unique.hpp

37 lines
1 KiB
C++
Raw Normal View History

2011-09-01 02:48:32 +00:00
#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_container_traits<Container>::fixed_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_container_traits<Container>::fixed_container_type unique(
Container const& cont,
BinaryPredicate pred
)
{
return sprout::fixed::unique_copy(sprout::begin(cont), sprout::end(cont), cont, pred);
}
} // namespace fixed
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_FIXED_UNIQUE_HPP