Function or value | Description |
Full Usage:
SortedList.findGreatestLowerBoundKey key list
Parameters:
'T
list : SortedList<'T, 'a>
Returns: 'T option
|
Find the greatest key that is less than or equal to the given key from the SortedList. If there's no such key, this function returns None.
|
Full Usage:
SortedList.findLeastUpperBoundKey key list
Parameters:
'T
list : SortedList<'T, 'a>
Returns: 'T option
|
Find the least key that is greater than or equal to the given key from the SortedList. If there's no such key, this function returns None.
|