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
|
(***********************************************************************)
(* *)
(* Objective Caml *)
(* *)
(* Luc Maranget, projet Moscova, INRIA Rocquencourt *)
(* *)
(* Copyright 2006 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed *)
(* under the terms of the Q Public License version 1.0. *)
(* *)
(***********************************************************************)
(* $Id: join_set.mli 7749 2006-11-21 08:29:57Z maranget $ *)
(*
mutable sets with readers/writer protection
*)
type 'a t
val create : unit -> 'a t
val singleton : 'a -> 'a t
val from_list : 'a list -> 'a t
val add : 'a t -> 'a -> unit
val adds : 'a t -> 'a list -> unit
val elements : 'a t -> 'a list
|