You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
679 B

(*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*)
open Import0
module type S = sig
type elt
module Elt : sig
type t = elt
include Comparator.S with type t := t
end
include Core_kernel.Set_intf.Make_S_plain_tree(Elt).S
val pp : elt pp -> t pp
val pp_diff : elt pp -> (t * t) pp
val of_ : elt -> t
val of_option : elt option -> t
val of_iarray : elt IArray.t -> t
val add_option : elt option -> t -> t
val add_list : elt list -> t -> t
val diff_inter : t -> t -> t * t
val disjoint : t -> t -> bool
end