include PrettyPrintable.PPSet with type elt = string
include Stdlib.Set.S with type elt = string
val remove : elt -> t -> tval disjoint : t -> t -> boolval 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 find_first : (elt -> bool) -> t -> eltval find_first_opt : (elt -> bool) -> t -> elt optionval find_last : (elt -> bool) -> t -> eltval find_last_opt : (elt -> bool) -> t -> elt optionval iter : (elt -> unit) -> t -> unitval fold : (elt -> 'acc -> 'acc) -> t -> 'acc -> 'accval filter : (elt -> bool) -> t -> tval filter_map : (elt -> elt option) -> t -> tval partition : (elt -> bool) -> t -> t * tval split : elt -> t -> t * bool * tval mem : elt -> t -> boolval equal : t -> t -> boolval compare : t -> t -> intval subset : t -> t -> boolval for_all : (elt -> bool) -> t -> boolval exists : (elt -> bool) -> t -> boolval to_list : t -> elt listval of_list : elt list -> tval to_seq_from : elt -> t -> elt Stdlib.Seq.tval to_seq : t -> elt Stdlib.Seq.tval to_rev_seq : t -> elt Stdlib.Seq.tval add_seq : elt Stdlib.Seq.t -> t -> tval of_seq : elt Stdlib.Seq.t -> tinclude IStdlib.IStd.Sexpable with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> tval sexp_of_t : t -> Sexplib0__.Sexp.tval hash_fold_t :
Base_internalhash_types.state ->
t ->
Base_internalhash_types.state