Implements opBinaryRight for the "in" operator, such that k in m will
resolve to the list of values for key k in the multivalue map m if
that key exists, or null if not.
structMultiValueMap(KeyType, ValueType, alias KeySort = (a, b) => a < b, alias KeyEquals = (a, b) => a == b)
Implements opBinaryRight for the "in" operator, such that k in m will resolve to the list of values for key k in the multivalue map m if that key exists, or null if not.