| 549 | // Lower bound: find first position in sorted [first, last) where value could be inserted. |
| 550 | template <typename Iterator, typename T, typename Compare> |
| 551 | Iterator lower_bound(Iterator first, Iterator last, const T& value, Compare comp) FL_NOEXCEPT { |
| 552 | return detail::lower_bound_impl(first, last, value, comp); |
| 553 | } |
| 554 | |
| 555 | template <typename Iterator, typename T> |
| 556 | Iterator lower_bound(Iterator first, Iterator last, const T& value) FL_NOEXCEPT { |
nothing calls this directly
no test coverage detected