sig
  type 'a t
  val length : 'a t -> int
  val is_empty : 'a t -> bool
  val iter : 'a t -> f:('-> unit) -> unit
  val fold : 'a t -> init:'accum -> f:('accum -> '-> 'accum) -> 'accum
  val exists : 'a t -> f:('-> bool) -> bool
  val for_all : 'a t -> f:('-> bool) -> bool
  val count : 'a t -> f:('-> bool) -> int
  val sum :
    (module Commutative_group.S with type t = 'sum) ->
    'a t -> f:('-> 'sum) -> 'sum
  val find : 'a t -> f:('-> bool) -> 'a option
  val find_map : 'a t -> f:('-> 'b option) -> 'b option
  val to_list : 'a t -> 'a list
  val to_array : 'a t -> 'a array
  type 'a tree
  type comparator_witness
  val invariants : 'a t -> bool
  val mem : 'a t -> '-> bool
  val add : 'a t -> '-> 'a t
  val remove : 'a t -> '-> 'a t
  val union : 'a t -> 'a t -> 'a t
  val inter : 'a t -> 'a t -> 'a t
  val diff : 'a t -> 'a t -> 'a t
  val symmetric_diff : 'a t -> 'a t -> ('a, 'a) Either.t Sequence.t
  val compare_direct : 'a t -> 'a t -> int
  val equal : 'a t -> 'a t -> bool
  val subset : 'a t -> 'a t -> bool
  val fold_until :
    'a t ->
    init:'-> f:('-> '-> [ `Continue of '| `Stop of 'b ]) -> 'b
  val fold_right : 'a t -> init:'-> f:('-> '-> 'b) -> 'b
  val iter2 :
    'a t ->
    'a t ->
    f:([ `Both of 'a * '| `Left of '| `Right of 'a ] -> unit) -> unit
  val filter : 'a t -> f:('-> bool) -> 'a t
  val partition_tf : 'a t -> f:('-> bool) -> 'a t * 'a t
  val elements : 'a t -> 'a list
  val min_elt : 'a t -> 'a option
  val min_elt_exn : 'a t -> 'a
  val max_elt : 'a t -> 'a option
  val max_elt_exn : 'a t -> 'a
  val choose : 'a t -> 'a option
  val choose_exn : 'a t -> 'a
  val split : 'a t -> '-> 'a t * 'a option * 'a t
  val group_by : 'a t -> equiv:('-> '-> bool) -> 'a t list
  val find_exn : 'a t -> f:('-> bool) -> 'a
  val find_index : 'a t -> int -> 'a option
  val remove_index : 'a t -> int -> 'a t
  val to_tree : 'a t -> 'Core_set_intf.Accessors1.tree
  val to_sequence :
    ?order:[ `Decreasing | `Increasing ] ->
    ?greater_or_equal_to:'-> ?less_or_equal_to:'-> 'a t -> 'Sequence.t
  val to_map :
    'a t ->
    f:('-> 'b) ->
    ('a, 'b, Core_set_intf.Accessors1.comparator_witness) Map.t
end