module Set: Set;
module type OrderedType = sig .. endInput signature of the functor Set.Make.
module type S = sig .. endOutput signature of the functor Set.Make.
module Make: (Ord: OrderedType) => S with type elt = Ord.t;
Functor building an implementation of the set structure given a totally ordered type.