Finds the leftmost insertion point.
int left(List<T> list, V value, {int lo = 0, int? hi}) { return bisectLeftBy(list, value, accessor, lo: lo, hi: hi); }