equalRange

Returns the bounds of a range that includes all the elements in the container with a key that compares equal to key.

In map containers, where no duplicate keys are allowed, the range will include one element at most. If key does not match any key in the container, the range returned has a length of zero.

  1. V[] equalRange(V[][K] mm, K key)
    V[]
    equalRange
    (
    K
    V
    )
    (
    V[][K] mm
    ,
    K key
    )
  2. V[] equalRange(V[K] aa, K key)

Parameters

mm V[][K]

the multimap to get the range from

key K

the key value to be compared

Return Value

Type: V[]

an array containing all the values the matched the key

Meta