Module type SetMap.Set
val empty : tval is_empty : t -> boolval singleton : elt -> tval is_singleton : t -> boolval add : elt -> t -> tval add_with_logs : ('parameters, 'error, elt -> t -> 'error * t) with_log_wrapval remove : elt -> t -> tval add_while_testing_freshness : ('parameters, 'error, elt -> t -> 'error * bool * t) with_log_wrapval remove_while_testing_existence : ('parameters, 'error, elt -> t -> 'error * bool * t) with_log_wrapval remove_with_logs : ('parameters, 'error, elt -> t -> 'error * t) with_log_wrapval split : elt -> t -> t * bool * tval union : t -> t -> tval disjoint_union : t -> t -> t optionval inter : t -> t -> tval minus : t -> t -> tminus a bcontains elements ofathat are not inb
val minus_with_logs : ('parameters, 'error, t -> t -> 'error * t) with_log_wrapval union_with_logs : ('parameters, 'error, t -> t -> 'error * t) with_log_wrapval disjoint_union_with_logs : ('parameters, 'error, t -> t -> 'error * t) with_log_wrapval inter_with_logs : ('parameters, 'error, t -> t -> 'error * t) with_log_wrapval diff_with_logs : ('parameters, 'error, t -> t -> 'error * t) with_log_wrapval size : t -> intval mem : elt -> t -> boolval exists : (elt -> bool) -> t -> boolval filter : (elt -> bool) -> t -> tval filter_with_logs : ('parameters, 'error, (elt -> bool) -> t -> 'error * t) with_log_wrapval for_all : (elt -> bool) -> t -> boolval partition : (elt -> bool) -> t -> t * tval partition_with_logs : ('parameters, 'error, (elt -> bool) -> t -> 'error * t * t) with_log_wrapval compare : t -> t -> intval equal : t -> t -> boolval subset : t -> t -> boolval iter : (elt -> unit) -> t -> unitval fold : (elt -> 'a -> 'a) -> t -> 'a -> 'aval fold_inv : (elt -> 'a -> 'a) -> t -> 'a -> 'aval elements : t -> elt listval print : Format.formatter -> t -> unitval choose : t -> elt optionval random : Random.State.t -> t -> elt optionval min_elt : t -> elt optionval max_elt : t -> elt option