diff options
| author | filliatr | 2000-07-25 17:29:20 +0000 |
|---|---|---|
| committer | filliatr | 2000-07-25 17:29:20 +0000 |
| commit | c330f60f1617afcb42cebe2fd2ccf9f330ea4f89 (patch) | |
| tree | 53e61f40e19ea35216091af7324a6bbd4fc7e4bd /kernel/environ.mli | |
| parent | 968d65c616127446c5f1c5d3485e9efdc420e6a4 (diff) | |
retablissement make doc et make minicoq
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@571 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/environ.mli')
| -rw-r--r-- | kernel/environ.mli | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/environ.mli b/kernel/environ.mli index 616a111620..981be607fc 100644 --- a/kernel/environ.mli +++ b/kernel/environ.mli @@ -49,21 +49,21 @@ val names_of_rel_context : env -> names_context (*s Returns also the substitution to be applied to rel's *) val push_rels_to_vars : env -> constr list * env -(* Gives identifiers in var_context and rel_context *) +(* Gives identifiers in [var_context] and [rel_context] *) val ids_of_context : env -> identifier list val map_context : (constr -> constr) -> env -> env -(*s Recurrence on var_context *) +(*s Recurrence on [var_context] *) val fold_var_context : (env -> var_declaration -> 'a -> 'a) -> env -> 'a -> 'a val process_var_context : (env -> var_declaration -> env) -> env -> env (* [process_var_context_both_sides f env] iters [f] on the var - declarations of env taking as argument both the initial segment, the + declarations of [env] taking as argument both the initial segment, the middle value and the tail segment *) val process_var_context_both_sides : (env -> var_declaration -> var_context -> env) -> env -> env -(*s Recurrence on rel_context *) +(*s Recurrence on [rel_context] *) val fold_rel_context : (env -> rel_declaration -> 'a -> 'a) -> env -> 'a -> 'a val process_rel_context : (env -> rel_declaration -> env) -> env -> env @@ -81,13 +81,13 @@ val new_meta : unit -> int (*s Looks up in environment *) -(* Looks up in the context of local vars referred by names (var_context) *) +(* Looks up in the context of local vars referred by names ([var_context]) *) (* raises [Not_found] if the identifier is not found *) val lookup_var_type : identifier -> env -> typed_type val lookup_var_value : identifier -> env -> constr option val lookup_var : identifier -> env -> constr option * typed_type -(* Looks up in the context of local vars referred by indice (rel_context) *) +(* Looks up in the context of local vars referred by indice ([rel_context]) *) (* raises [Not_found] if the index points out of the context *) val lookup_rel_type : int -> env -> name * typed_type val lookup_rel_value : int -> env -> constr option |
