/// \file // Range v3 library // // Copyright Eric Niebler 2014 // // Use, modification and distribution is subject to the // Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // Project home: https://github.com/ericniebler/range-v3 // #ifndef RANGES_V3_ALGORITHM_COUNT_HPP #define RANGES_V3_ALGORITHM_COUNT_HPP #include #include #include #include #include #include #include #include #include namespace ranges { inline namespace v3 { /// \addtogroup group-algorithms /// @{ struct count_fn { template() && Sentinel() && IndirectRelation, V const *>())> difference_type_t operator()(I begin, S end, V const & val, P proj = P{}) const { difference_type_t n = 0; for(; begin != end; ++begin) if(invoke(proj, *begin) == val) ++n; return n; } template, CONCEPT_REQUIRES_(InputRange() && IndirectRelation, V const *>())> difference_type_t operator()(Rng &&rng, V const & val, P proj = P{}) const { return (*this)(begin(rng), end(rng), val, std::move(proj)); } }; /// \sa `count_fn` /// \ingroup group-algorithms RANGES_INLINE_VARIABLE(with_braced_init_args>, count) /// @} } // namespace v3 } // namespace ranges #endif // include guard