ConstFinds the rightmost insertion point for target in a sorted array.
If target exists, returns the index after any equal entries. (Like Python's bisect_right.)
Sorted array (ascending).
Value to locate.
Insertion index.
Finds the rightmost insertion point for target in a sorted array.
If target exists, returns the index after any equal entries. (Like Python's bisect_right.)
Sorted array (ascending).
Value to locate.
Insertion index.
Alias for bisectRight.