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
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * Copyright INRIA, CNRS and contributors *)
(* <O___,, * (see version control and CREDITS file for authors & dates) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
module type ValueS =
sig
type 'a t
end
(** Polymorphic maps over an extensible GADT tag type. *)
module type Tag = sig type _ tag = .. end
module Make (Tag:Tag) : sig
open Tag
module type OneTag = sig
type a
type _ tag += T : a tag
end
type 'a onetag = (module OneTag with type a = 'a)
(** There is no equality function between [_ tag] values (other than
[Stdlib.(=)]), and especially no equality function which shows
that when the values are equal the type arguments are also
equal.
Instead we can use ['a onetag] to recognize ['b tag] values. *)
val eq_onetag : 'a onetag -> 'b tag -> ('a,'b) CSig.eq option
val make : unit -> 'a onetag
val tag_of_onetag : 'a onetag -> 'a tag
module type MapS = sig
type t
type _ value
val empty : t
val find : 'a tag -> t -> 'a value
val add : 'a onetag -> 'a value -> t -> t
val mem : 'a tag -> t -> bool
val modify : 'a tag -> ('a value -> 'a value) -> t -> t
end
module Map(V:ValueS) : MapS with type 'a value := 'a V.t
end
|