Lines Matching refs:lower_bound
282 iterator lower_bound(const K& key);
285 const_iterator lower_bound(const K& key) const;
353 // Helper class for e.g. lower_bound that can compare a value on the left
393 auto position = lower_bound(GetKeyFromValue()(val));
411 auto position = std::lower_bound(first, last, val, value_comp());
434 auto position = std::lower_bound(first, last, val, value_comp());
877 auto lower = lower_bound(key);
888 auto flat_tree<Key, Value, GetKeyFromValue, KeyCompare>::lower_bound(
890 return const_cast_it(as_const().lower_bound(key));
895 auto flat_tree<Key, Value, GetKeyFromValue, KeyCompare>::lower_bound(
904 return std::lower_bound(begin(), end(), key_ref, key_value);
950 auto lower = lower_bound(key);