diff options
| author | herbelin | 2003-05-19 17:35:03 +0000 |
|---|---|---|
| committer | herbelin | 2003-05-19 17:35:03 +0000 |
| commit | 1abd56dea147493178a582569f50c9c6f03c6008 (patch) | |
| tree | 940ad7cdc5bef6de02ea76d7b7bd450920313798 /lib | |
| parent | 4f17ea4dcc68bb4619dbf2b8578333288f145fe5 (diff) | |
Renommage CMeta en CPatVar qui sert à saisir les PMeta de Pattern
Utilisation d'ident plutôt que int pour PMeta/CPatVar
Ajout CEvar pour la saisie des Evar
Pas d'entrée utilisateur pour les Meta noyau
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4033 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/util.ml | 2 | ||||
| -rw-r--r-- | lib/util.mli | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/lib/util.ml b/lib/util.ml index fb71357ba5..32ebb30ad1 100644 --- a/lib/util.ml +++ b/lib/util.ml @@ -543,8 +543,6 @@ type ('a,'b) union = Inl of 'a | Inr of 'b module Intset = Set.Make(struct type t = int let compare = compare end) -let intset_exists p s = Intset.fold (fun x b -> (p x) || b) s false - module Intmap = Map.Make(struct type t = int let compare = compare end) let intmap_in_dom x m = diff --git a/lib/util.mli b/lib/util.mli index 5dac6d30e7..349a323669 100644 --- a/lib/util.mli +++ b/lib/util.mli @@ -165,8 +165,6 @@ type ('a,'b) union = Inl of 'a | Inr of 'b module Intset : Set.S with type elt = int -val intset_exists : (int -> bool) -> Intset.t -> bool - module Intmap : Map.S with type key = int val intmap_in_dom : int -> 'a Intmap.t -> bool |
