1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
(****************************************************************************)
(* the diy toolsuite *)
(* *)
(* Jade Alglave, University College London, UK. *)
(* Luc Maranget, INRIA Paris-Rocquencourt, France. *)
(* *)
(* Copyright 2010-present Institut National de Recherche en Informatique et *)
(* en Automatique and the authors. All rights reserved. *)
(* *)
(* This software is governed by the CeCILL-B license under French law and *)
(* abiding by the rules of distribution of free software. You can use, *)
(* modify and/ or redistribute the software under the terms of the CeCILL-B *)
(* license as circulated by CEA, CNRS and INRIA at the following URL *)
(* "http://www.cecill.info". We also give a copy in LICENSE.txt. *)
(****************************************************************************)
(** Additional operations on sets *)
module type OrderedType = Set.OrderedType
module type S = sig
include Set.S
(* Iterate with counter *)
val iteri : (int -> elt -> unit) -> t -> unit
(* Iterate over cartesian product *)
val iter2 : (elt -> elt -> unit) -> t -> t -> unit
(* Exists on cartesian product *)
val exists2 : (elt -> elt -> bool) -> t -> t -> bool
val find : (elt -> bool) -> t -> elt
(** Like exists, but returns an elt that satisfy the predicate,
raises Not_found, if no such elt exists *)
val find_opt : (elt -> bool) -> t -> elt option
(** Like find, option version *)
(* Check for a singleton *)
val is_singleton : t -> bool
val as_singleton : t -> elt option
(* Returns list of elements when cardinal <= some bound *)
val as_small : int -> t -> elt list option
(* union of some sets *)
val union3 : t -> t -> t -> t
val union4 : t -> t -> t -> t -> t
val union5 : t -> t -> t -> t -> t -> t
val union6 : t -> t -> t -> t -> t -> t -> t
(* Quite convenient: union of sets given in a list *)
val unions : t list -> t
(* Should be obvious *)
val map_list : (elt -> 'a) -> t -> 'a list
val map_union : (elt -> t) -> t -> t
val disjoint : t -> t -> bool
(* Decomposition, should be efficient an trivial, given
set implementation as a tree. It is not. *)
val split3 : t -> t * elt * t
(* second argument is delimiter (as in String.concat) *)
val pp : out_channel -> string -> (out_channel -> elt -> unit) -> t -> unit
(* As above, but sprintf style instead of fprintf style *)
val pp_str : string -> (elt -> string) -> t -> string
end
module Make: functor (Ord:OrderedType) -> S with type elt = Ord.t
|