count function template — Counts the occurrences of a value
template<typename InIter, typename T>
typename iterator_traits<InIter>::difference_type
count(InIter first, InIter last, const T& value);
The count
function template
returns the number of elements in the range [first
, last
) that are equal to value
.