module Infix:sig..end
Infix operators over a BatMultiPMap
val (-->) : ('a, 'b) BatMultiPMap.t -> 'a -> 'b BatSet.PSet.tmap-->key returns the current binding of key in map.
Equivalent to find key map.
val (<--) : ('a, 'b) BatMultiPMap.t -> 'a * 'b -> ('a, 'b) BatMultiPMap.tmap<--(key, value) returns a map containing the same bindings as
map, plus a binding of key to value. Equivalent to
add key value map