2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_NONE_OF_HPP
|
|
|
|
#define SPROUT_ALGORITHM_NONE_OF_HPP
|
|
|
|
|
2012-12-16 15:36:19 +00:00
|
|
|
#include <iterator>
|
2013-01-03 08:01:50 +00:00
|
|
|
#include <type_traits>
|
2012-04-01 13:15:09 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2013-01-03 08:01:50 +00:00
|
|
|
#include <sprout/iterator/type_traits/is_iterator.hpp>
|
|
|
|
#include <sprout/utility/pair.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-12-09 05:34:14 +00:00
|
|
|
namespace detail {
|
|
|
|
template<typename RandomAccessIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
none_of_impl_ra(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, Predicate pred,
|
|
|
|
typename std::iterator_traits<RandomAccessIterator>::difference_type pivot
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return pivot == 0 ? !pred(*first)
|
|
|
|
: sprout::detail::none_of_impl_ra(
|
|
|
|
first, sprout::next(first, pivot), pred,
|
|
|
|
pivot / 2
|
|
|
|
)
|
|
|
|
&& sprout::detail::none_of_impl_ra(
|
|
|
|
sprout::next(first, pivot), last, pred,
|
2013-01-03 08:01:50 +00:00
|
|
|
(sprout::distance(first, last) - pivot) / 2
|
2012-12-09 05:34:14 +00:00
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename RandomAccessIterator, typename Predicate>
|
2013-01-03 08:01:50 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
sprout::is_constant_distance_iterator<RandomAccessIterator>::value,
|
|
|
|
bool
|
|
|
|
>::type
|
2012-12-09 05:34:14 +00:00
|
|
|
none_of(
|
|
|
|
RandomAccessIterator first, RandomAccessIterator last, Predicate pred,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return first == last ? true
|
2013-01-03 08:01:50 +00:00
|
|
|
: sprout::detail::none_of_impl_ra(first, last, pred, sprout::distance(first, last) / 2)
|
2012-12-09 05:34:14 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename InputIterator, typename Predicate>
|
2013-01-03 08:01:50 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, bool>
|
|
|
|
none_of_impl_1(
|
|
|
|
sprout::pair<InputIterator, bool> const& current,
|
|
|
|
InputIterator last, Predicate pred, typename std::iterator_traits<InputIterator>::difference_type n
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::pair<InputIterator, bool> type;
|
|
|
|
return !current.second || current.first == last ? current
|
|
|
|
: n == 1 ? !pred(*current.first) ? type(sprout::next(current.first), true) : type(current.first, false)
|
|
|
|
: sprout::detail::none_of_impl_1(
|
|
|
|
sprout::detail::none_of_impl_1(
|
|
|
|
current,
|
|
|
|
last, pred, n / 2
|
|
|
|
),
|
|
|
|
last, pred, n - n / 2
|
|
|
|
)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, bool>
|
|
|
|
none_of_impl(
|
|
|
|
sprout::pair<InputIterator, bool> const& current,
|
|
|
|
InputIterator last, Predicate pred, typename std::iterator_traits<InputIterator>::difference_type n
|
|
|
|
)
|
|
|
|
{
|
|
|
|
typedef sprout::pair<InputIterator, bool> type;
|
|
|
|
return !current.second || current.first == last ? current
|
|
|
|
: sprout::detail::none_of_impl(
|
|
|
|
sprout::detail::none_of_impl_1(
|
|
|
|
current,
|
|
|
|
last, pred, n
|
|
|
|
),
|
|
|
|
last, pred, n * 2
|
|
|
|
)
|
2012-12-09 05:34:14 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator, typename Predicate>
|
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
none_of(
|
|
|
|
InputIterator first, InputIterator last, Predicate pred,
|
|
|
|
void*
|
|
|
|
)
|
|
|
|
{
|
2013-01-03 08:01:50 +00:00
|
|
|
typedef sprout::pair<InputIterator, bool> type;
|
|
|
|
return sprout::detail::none_of_impl(type(first, true), last, pred, 1).second;
|
2012-12-09 05:34:14 +00:00
|
|
|
}
|
2013-01-10 17:55:19 +00:00
|
|
|
} // namespace detail
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
// 25.2.3 None of
|
2012-12-12 08:46:36 +00:00
|
|
|
//
|
|
|
|
// recursion depth:
|
2013-01-03 08:01:50 +00:00
|
|
|
// O(log N)
|
2012-12-12 08:46:36 +00:00
|
|
|
//
|
2012-04-01 13:15:09 +00:00
|
|
|
template <typename InputIterator, typename Predicate>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
none_of(InputIterator first, InputIterator last, Predicate pred) {
|
2012-12-09 05:34:14 +00:00
|
|
|
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
|
|
|
return sprout::detail::none_of(first, last, pred, category());
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_NONE_OF_HPP
|