package coq-core
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=8d852367b54f095d9fbabd000304d450
sha512=46922d5f2eb6802a148a52fd3e7f0be8370c93e7bc33cee05cf4a2044290845b10ccddbaa306f29c808e7c5019700763e37e45ff6deb507b874a4348010fed50
doc/coq-core.kernel/Context/index.html
Module Context
Source
The modules defined below represent a local context as defined by Chapter 4 in the Reference Manual:
A local context is an ordered list of of local declarations of names that we call variables.
A local declaration of some variable can be either:
- a local assumption, or
- a local definition.
Local assumptions are denoted in the Reference Manual as (name : typ)
and local definitions are there denoted as (name := value : typ)
.
Always Relevant
Relevant + Name
Relevant + Anonymous
Representation of contexts that can capture anonymous as well as non-anonymous variables. Individual declarations are then designated by de Bruijn indexes.
This module represents contexts that can capture non-anonymous variables. Individual declarations are then designated by the identifiers they bind.