|
template<class InputRange, class T> |
boost::range_difference< InputRange >::type | count (InputRange &range, T &value) |
| count implementation
|
template<class InputRange, class T> |
boost::range_difference< InputRange >::type | count (const InputRange &range, T &value) |
| count implementation
|
template<class InputIterator, class Predicate> |
std::iterator_traits< InputIterator >::difference_type | count_if (InputIterator first, InputIterator last, Predicate pred) |
| count implementation
|
template<class InputRange, class Predicate> |
boost::range_difference< InputRange >::type | count_if (InputRange &range, Predicate pred) |
| count implementation
|
template<class InputRange, class Predicate> |
boost::range_difference< InputRange >::type | count_if (const InputRange &range, Predicate pred) |
| count implementation
|