TwoWayMap.opBinaryRight

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

  1. KeyType* opBinaryRight(cstring b)
    struct TwoWayMap(A)
    opBinaryRight
    (
    istring op : "in"
    )
  2. ValueType* opBinaryRight(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