Functions
- Uses a sorted slice
data: &[E]
as a kind of “multi-map”. Thekey_fn
extracts a key of typeK
from the data, and this function finds the range of elements that match the key.data
must have been sorted as if by a call tosort_by_key
for this to work.