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_LOWER_BOUND_HPP
|
|
|
|
#define SPROUT_ALGORITHM_LOWER_BOUND_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-08-31 15:13:23 +00:00
|
|
|
#include <sprout/iterator/distance.hpp>
|
2013-08-30 23:29:24 +00:00
|
|
|
#include <sprout/functional/less.hpp>
|
2013-08-31 15:13:23 +00:00
|
|
|
#include <sprout/detail/algorithm/lower_bound.hpp>
|
2012-04-01 13:15:09 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
|
|
|
|
// 25.4.3.1 lower_bound
|
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>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
|
|
lower_bound(ForwardIterator first, ForwardIterator last, T const& value, Compare comp) {
|
2013-08-31 15:13:23 +00:00
|
|
|
return sprout::detail::lower_bound(first, sprout::distance(first, last), value, comp);
|
2012-04-01 13:15:09 +00:00
|
|
|
}
|
2012-12-15 14:48:52 +00:00
|
|
|
|
|
|
|
template<typename ForwardIterator, typename T>
|
|
|
|
inline SPROUT_CONSTEXPR ForwardIterator
|
|
|
|
lower_bound(ForwardIterator first, ForwardIterator last, T const& value) {
|
2013-08-30 23:29:24 +00:00
|
|
|
return sprout::lower_bound(first, last, value, sprout::less<>());
|
2012-12-15 14:48:52 +00:00
|
|
|
}
|
2012-04-01 13:15:09 +00:00
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_ALGORITHM_LOWER_BOUND_HPP
|