aboutsummaryrefslogtreecommitdiffhomepage
path: root/pretyping/instantiate.mli
diff options
context:
space:
mode:
Diffstat (limited to 'pretyping/instantiate.mli')
-rw-r--r--pretyping/instantiate.mli25
1 files changed, 25 insertions, 0 deletions
diff --git a/pretyping/instantiate.mli b/pretyping/instantiate.mli
new file mode 100644
index 000000000..4f4184769
--- /dev/null
+++ b/pretyping/instantiate.mli
@@ -0,0 +1,25 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
+
+(*i $Id$ i*)
+
+(*i*)
+open Names
+open Term
+open Evd
+open Sign
+open Environ
+(*i*)
+
+(*s [existential_value sigma ev] raises [NotInstantiatedEvar] if [ev] has
+no body and [Not_found] if it does not exist in [sigma] *)
+
+exception NotInstantiatedEvar
+val existential_value : 'a evar_map -> existential -> constr
+val existential_type : 'a evar_map -> existential -> types
+val existential_opt_value : 'a evar_map -> existential -> constr option