/// \file // Range v3 library // // Copyright Eric Niebler 2014 // Copyright Casey Carter 2016 // // 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_EQUAL_RANGE_HPP #define RANGES_V3_ALGORITHM_EQUAL_RANGE_HPP #include #include #include #include #include #include #include #include #include #include #include #include namespace ranges { inline namespace v3 { /// \addtogroup group-algorithms /// @{ struct equal_range_fn { template() && !SizedSentinel() && BinarySearchable())> iterator_range operator()(I begin, S end, V const &val, C pred = C{}, P proj = P{}) const { // Probe exponentially for either end-of-range, an iterator that // is past the equal range (i.e., denotes an element greater // than val), or is in the equal range (denotes an element equal // to val). auto dist = difference_type_t{1}; while(true) { auto mid = begin; auto d = advance(mid, dist, end); if(d || mid == end) { // at the end of the input range dist -= d; return aux::equal_range_n( std::move(begin), dist, val, std::ref(pred), std::ref(proj)); } // if val < *mid, mid is after the target range. auto && v = *mid; auto && pv = invoke(proj, (decltype(v)&&) v); if(invoke(pred, val, pv)) { return aux::equal_range_n( std::move(begin), dist, val, std::ref(pred), std::ref(proj)); } else if(!invoke(pred, pv, val)) { // *mid == val: the lower bound is <= mid, and the upper bound is > mid. return { aux::lower_bound_n(std::move(begin), dist, val, std::ref(pred), std::ref(proj)), upper_bound(std::move(mid), std::move(end), val, std::ref(pred), std::ref(proj)) }; } // *mid < val, mid is before the target range. begin = std::move(mid); ++begin; dist *= 2; } } template() && BinarySearchable())> iterator_range operator()(I begin, S end, V const &val, C pred = C{}, P proj = P{}) const { auto const len = distance(begin, end); return aux::equal_range_n(std::move(begin), len, val, std::move(pred), std::move(proj)); } template, CONCEPT_REQUIRES_(Range() && !SizedRange() && BinarySearchable())> meta::if_, iterator_range, dangling>> operator()(Rng &&rng, V const &val, C pred = C{}, P proj = P{}) const { return (*this)(begin(rng), end(rng), val, std::move(pred), std::move(proj)); } template, CONCEPT_REQUIRES_(SizedRange() && BinarySearchable())> meta::if_, iterator_range, dangling>> operator()(Rng &&rng, V const &val, C pred = C{}, P proj = P{}) const { auto const len = distance(rng); return aux::equal_range_n(begin(rng), len, val, std::move(pred), std::move(proj)); } }; /// \sa `equal_range_fn` /// \ingroup group-algorithms RANGES_INLINE_VARIABLE(with_braced_init_args, equal_range) /// @} } // namespace v3 } // namespace ranges #endif // include guard