lowerBound

Returns value to lower bound

associative array. If the associative array previously contained a mapping for

Returns the value of the key pointing to the first element in the container whose key does not compare less than key, i.e. it is either equal or greater.

V
lowerBound
(
K
V
)
(
V[K] aa
,
K key
)

Parameters

aa V[K]

the associative array to get the lower bound of

key K

the key to be compared

Return Value

Type: V

the value of the key of the first element in the container whose key does not compare less than key.

Throws

NoSuchElementException if the given key could not be found

Meta