Parameters
Signature
val mem : elt -> t -> boolval remove : elt -> t -> tval disjoint : t -> t -> boolval compare : t -> t -> intval equal : t -> t -> boolval subset : t -> t -> boolval iter : (elt -> unit) -> t -> unitval fold : (elt -> 'a -> 'a) -> t -> 'a -> 'aval for_all : (elt -> bool) -> t -> boolval exists : (elt -> bool) -> t -> boolval filter : (elt -> bool) -> t -> tval partition : (elt -> bool) -> t -> t * tval elements : t -> elt listval min_elt_opt : t -> elt optionval max_elt_opt : t -> elt optionval choose_opt : t -> elt optionval find_opt : elt -> t -> elt optionval of_list : elt list -> tval of_increasing_iterator_unchecked : (unit -> elt) -> int -> tval of_sorted_array_unchecked : elt array -> tval find_first_opt : (elt -> bool) -> t -> elt option