TwoWayMap.opIn_r

opIn_r operator - performs a lookup of an item A in the map corresponding to an item B.

  1. KeyType* opIn_r(cstring b)
    struct TwoWayMap(A)
    opIn_r
    (
    cstring b
    )
  2. ValueType* opIn_r(KeyType a)

Parameters

b cstring

item to look up

Return Value

Type: KeyType*

item of type A corresponding to specified item of type B, or null if no mapping exists

Meta