TwoWayMap.opBinaryRight

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

  1. KeyType* opBinaryRight(cstring b)
  2. ValueType* opBinaryRight(KeyType a)
    struct TwoWayMap(A)
    opBinaryRight
    (
    istring op : "in"
    )

Parameters

a KeyType

item to look up

Return Value

Type: ValueType*

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

Meta