This commit is contained in:
Simon Cruanes 2014-08-05 11:20:30 +02:00
parent 2812f797e9
commit 9f04b4a0d7

View file

@ -105,7 +105,11 @@ end
module Make(K : OrderedType)(V : OrderedType) : S with type key = K.t and type value = V.t
(** {2 Two-Way Multimap} *)
(** {2 Two-Way Multimap}
Represents n-to-n mappings between two types. Each element from the "left"
is mapped to several right values, and conversely.
@since NEXT_RELEASE *)
module type BIDIR = sig
type t