Return the first position in sorted Range where Value could be inserted using C.
Declared in <llvm/ADT/STLExtras.h>
template<
typename R,
typename T,
typename Compare>
auto
lower_bound(
R&& Range,
T&& Value,
Compare C);
Iterator to the first position where Value could be inserted.
| Name | Description |
|---|---|
| Range | Sorted range to search. |
| Value | Value to bound. |
| C | Comparison function object. |