2012-06-23 23:22:12 +00:00
|
|
|
#ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|
|
|
|
#define SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|
2012-06-23 04:22:50 +00:00
|
|
|
|
|
|
|
#include <iterator>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace detail {
|
|
|
|
//
|
|
|
|
// count_n_if
|
|
|
|
//
|
|
|
|
template<typename InputIterator, typename Size, typename Predicate>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_n_if(InputIterator first, Size n, Predicate pred) {
|
2012-06-23 04:22:50 +00:00
|
|
|
return n == 0 ? 0
|
|
|
|
: (pred(*first) ? 1 : 0) + sprout::detail::count_n_if(sprout::next(first), n - 1, pred)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-06-23 23:22:12 +00:00
|
|
|
#endif // #ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_IF_HPP
|