Function polars_utils::binary_search::find_first_ge_index
source ยท pub fn find_first_ge_index<T>(arr: &[T], val: T) -> usizewhere
T: Ord,Expand description
Find the index of the first element of arr that is greater
or equal to val.
Assumes that arr is sorted.