2012-06-23 23:22:12 +00:00
|
|
|
#ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP
|
|
|
|
#define SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP
|
2012-06-23 04:22:50 +00:00
|
|
|
|
|
|
|
#include <iterator>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/iterator/operation.hpp>
|
2012-12-16 17:14:07 +00:00
|
|
|
#include <sprout/algorithm/count.hpp>
|
2012-06-23 04:22:50 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace detail {
|
2012-12-16 17:14:07 +00:00
|
|
|
template<typename InputIterator, typename Size, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_n(
|
|
|
|
InputIterator first, Size n, T const& value,
|
|
|
|
std::random_access_iterator_tag*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::count(first, sprout::next(first, n), value);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename InputIterator, typename Size, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_n_impl(InputIterator first, Size n, T const& value) {
|
|
|
|
return n == 0 ? 0
|
|
|
|
: (*first == value ? 1 : 0) + sprout::detail::count_n_impl(sprout::next(first), n - 1, value)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
template<typename InputIterator, typename Size, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_n(
|
|
|
|
InputIterator first, Size n, T const& value,
|
|
|
|
void*
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::detail::count_n_impl(first, n, value);
|
|
|
|
}
|
|
|
|
|
2012-06-23 04:22:50 +00:00
|
|
|
//
|
|
|
|
// count_n
|
|
|
|
//
|
|
|
|
template<typename InputIterator, typename Size, typename T>
|
2012-10-05 15:58:56 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::iterator_traits<InputIterator>::difference_type
|
|
|
|
count_n(InputIterator first, Size n, T const& value) {
|
2012-12-16 17:14:07 +00:00
|
|
|
typedef typename std::iterator_traits<InputIterator>::iterator_category* category;
|
|
|
|
return sprout::detail::count_n(first, n, value, category());
|
2012-06-23 04:22:50 +00:00
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-06-23 23:22:12 +00:00
|
|
|
#endif // #ifndef SPROUT_DETAIL_ALGORITHM_COUNT_N_HPP
|