#ifndef SPROUT_ALGORITHM_EQUAL_RANGE_HPP #define SPROUT_ALGORITHM_EQUAL_RANGE_HPP #include #include #include #include namespace sprout { // Copyright (C) 2011 RiSK (sscrisk) // 25.4.3.3 equal_range template inline SPROUT_CONSTEXPR sprout::pair equal_range( ForwardIterator first, ForwardIterator last, T const& value ) { return {sprout::lower_bound(first, last, value), sprout::upper_bound(first, last, value)}; } template inline SPROUT_CONSTEXPR pair equal_range( ForwardIterator first, ForwardIterator last, T const& value, Compare comp ) { return {sprout::lower_bound(first, last, value, comp), sprout::upper_bound(first, last, value, comp)}; } } // namespace sprout #endif // #ifndef SPROUT_ALGORITHM_EQUAL_RANGE_HPP