mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
29 lines
892 B
C++
29 lines
892 B
C++
#ifndef SPROUT_ALGORITHM_ONE_OF_HPP
|
|
#define SPROUT_ALGORITHM_ONE_OF_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/iterator/operation.hpp>
|
|
#include <sprout/algorithm/find_if.hpp>
|
|
#include <sprout/algorithm/none_of.hpp>
|
|
|
|
namespace sprout {
|
|
namespace detail {
|
|
template<typename InputIterator, typename Predicate>
|
|
inline SPROUT_CONSTEXPR bool
|
|
one_of_impl(InputIterator found, InputIterator last, Predicate pred) {
|
|
return found != last
|
|
&& sprout::none_of(sprout::next(found), last, pred)
|
|
;
|
|
}
|
|
} // namespace detail
|
|
//
|
|
// one_of
|
|
//
|
|
template<typename InputIterator, typename Predicate>
|
|
inline SPROUT_CONSTEXPR bool
|
|
one_of(InputIterator first, InputIterator last, Predicate pred) {
|
|
return sprout::detail::one_of_impl(sprout::find_if(first, last, pred), last, pred);
|
|
}
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_ONE_OF_HPP
|