package coq-core
Install
Dune Dependency
Authors
Maintainers
Sources
md5=5d1187d5e44ed0163f76fb12dabf012e
sha512=91bc81530fa4f6498961583ad51eac5001f139881788b88e360a866ad8e2a6e2c5bce86d1a580ab4cd4782bf49d48318767df82471ce33ba3ac143e5569ad33c
doc/coq-core.kernel/Section/index.html
Module Section
Source
Kernel implementation of sections.
Type of sections with additional data 'a
Manipulating sections
Open a new section with the provided universe polymorphic status. Sections can be nested, with the proviso that polymorphic sections cannot appear inside a monomorphic one. A custom data can be attached to this section, that will be returned by close_section
.
Close the current section and returns the entries defined inside, the set of global monomorphic constraints added in this section, and the custom data provided at the opening of the section.
Extending sections
Extend the current section with a local definition (cf. push_named).
Extend the current section with a local universe context. Assumes that the last opened section is polymorphic.
Extend the current section with a global universe context. Assumes that the last opened section is monomorphic.
Push a global entry in this section.
Retrieving section data
Returns all polymorphic universes, including those from previous sections. Earlier sections are earlier in the array.
NB: even if the array is empty there may be polymorphic constraints about monomorphic universes, which prevent declaring monomorphic globals.
Section segment at the time of the constant declaration
Section segment at the time of the inductive declaration