mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-16 10:49:05 +00:00
67 lines
2.1 KiB
C++
67 lines
2.1 KiB
C++
|
#ifndef SPROUT_ALGORITHM_OUTFIT_UNIQUE_HPP
|
||
|
#define SPROUT_ALGORITHM_OUTFIT_UNIQUE_HPP
|
||
|
|
||
|
#include <sprout/config.hpp>
|
||
|
#include <sprout/fixed_container/traits.hpp>
|
||
|
#include <sprout/fixed_container/functions.hpp>
|
||
|
#include <sprout/algorithm/fixed/unique.hpp>
|
||
|
#include <sprout/sub_array.hpp>
|
||
|
|
||
|
namespace sprout {
|
||
|
namespace outfit {
|
||
|
namespace detail {
|
||
|
template<typename Container>
|
||
|
SPROUT_CONSTEXPR inline sprout::sub_array<typename sprout::fixed_container_traits<Container>::fixed_container_type> unique_impl(
|
||
|
Container const& cont,
|
||
|
typename sprout::fixed_container_traits<Container>::difference_type offset
|
||
|
)
|
||
|
{
|
||
|
return sprout::sub_copy(
|
||
|
sprout::fixed::unique(cont),
|
||
|
offset,
|
||
|
offset + sprout::size(cont)
|
||
|
);
|
||
|
}
|
||
|
} // namespace detail
|
||
|
//
|
||
|
// unique
|
||
|
//
|
||
|
template<typename Container>
|
||
|
SPROUT_CONSTEXPR inline sprout::sub_array<typename sprout::fixed_container_traits<Container>::fixed_container_type> unique(
|
||
|
Container const& cont
|
||
|
)
|
||
|
{
|
||
|
return sprout::outfit::detail::unique_impl(cont, sprout::fixed_begin_offset(cont));
|
||
|
}
|
||
|
|
||
|
namespace detail {
|
||
|
template<typename Container, typename BinaryPredicate>
|
||
|
SPROUT_CONSTEXPR inline sprout::sub_array<typename sprout::fixed_container_traits<Container>::fixed_container_type> unique_impl(
|
||
|
Container const& cont,
|
||
|
BinaryPredicate pred,
|
||
|
typename sprout::fixed_container_traits<Container>::difference_type offset
|
||
|
)
|
||
|
{
|
||
|
return sprout::sub_copy(
|
||
|
sprout::fixed::unique(cont, pred),
|
||
|
offset,
|
||
|
offset + sprout::size(cont)
|
||
|
);
|
||
|
}
|
||
|
} // namespace detail
|
||
|
//
|
||
|
// unique
|
||
|
//
|
||
|
template<typename Container, typename BinaryPredicate>
|
||
|
SPROUT_CONSTEXPR inline sprout::sub_array<typename sprout::fixed_container_traits<Container>::fixed_container_type> unique(
|
||
|
Container const& cont,
|
||
|
BinaryPredicate pred
|
||
|
)
|
||
|
{
|
||
|
return sprout::outfit::detail::unique_impl(cont, pred, sprout::fixed_begin_offset(cont));
|
||
|
}
|
||
|
} // namespace outfit
|
||
|
} // namespace sprout
|
||
|
|
||
|
#endif // #ifndef SPROUT_ALGORITHM_OUTFIT_UNIQUE_HPP
|