Cf_bsearch_data.SetThis module contains the signature of an immutable set constructed from a binary search table of containing elements of the set. Distinguished instances are provided for tables of char and int type values.
module type Profile = sig ... endThe signature of set implementation modules.
module Create
(T : Table.Basis) :
Profile
with type search := T.Search.t
and type element := T.Vector.element
and type Unsafe.index := T.Vector.index
and type Unsafe.vector := T.Vector.tUse Create(B) to create an instance of a set module.
module Of_char : sig ... endA distinguished instance of a module for sets of char elements.
module Of_int : sig ... endA distinguished instance of a module for sets of int elements.
module Of_string : sig ... endA distinguished instance of a module for sets of string elements.