2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
Copyright (C) 2011 RiSK (sscrisk)
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under 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)
|
|
|
|
=============================================================================*/
|
2012-04-01 13:15:09 +00:00
|
|
|
#ifndef SPROUT_ALGORITHM_EQUAL_RANGE_HPP
|
|
|
|
#define SPROUT_ALGORITHM_EQUAL_RANGE_HPP
|
|
|
|
|
2013-01-10 18:17:06 +00:00
|
|
|
#include <iterator>
|
2012-04-01 13:15:09 +00:00
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/algorithm/lower_bound.hpp>
|
|
|
|
#include <sprout/algorithm/upper_bound.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
2012-12-15 14:48:52 +00:00
|
|
|
#include HDR_FUNCTIONAL_SSCRISK_CEL_OR_SPROUT
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
|
|
|
|
// 25.4.3.3 equal_range
|
2012-12-15 14:48:52 +00:00
|
|
|
//
|
|
|
|
// recursion depth:
|
2013-01-10 18:17:06 +00:00
|
|
|
// O(log N)
|
2012-12-15 14:48:52 +00:00
|
|
|
//
|
2012-04-01 13:15:09 +00:00
|
|
|
template<typename ForwardIterator, typename T, typename Compare>
|
2013-01-10 18:17:06 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<ForwardIterator, ForwardIterator>
|
2012-10-06 04:53:07 +00:00
|
|
|
equal_range(ForwardIterator first, ForwardIterator last, T const& value, Compare comp) {
|
2013-08-09 10:04:37 +00:00
|
|
|
return sprout::pair<ForwardIterator, ForwardIterator>(
|
2013-01-10 18:17:06 +00:00
|
|
|
sprout::lower_bound(first, last, value, comp),
|
|
|
|
sprout::upper_bound(first, last, value, comp)
|
2013-08-09 10:04:37 +00:00
|
|
|
);
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
2012-12-15 14:48:52 +00:00
|
|
|
|
|
|
|
template<typename ForwardIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::pair<ForwardIterator, ForwardIterator>
|
|
|
|
equal_range(ForwardIterator first, ForwardIterator last, T const& value) {
|
|
|
|
return sprout::equal_range(
|
|
|
|
first, last, value,
|
|
|
|
NS_SSCRISK_CEL_OR_SPROUT::less<typename std::iterator_traits<ForwardIterator>::value_type>()
|
|
|
|
);
|
|
|
|
}
|
2012-04-01 13:15:09 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_EQUAL_RANGE_HPP
|