Module Section
val depth : 'a t -> intNumber of nested sections.
Manipulating sections
type section_entry=|SecDefinition of Names.Constant.t|SecInductive of Names.MutInd.t
val open_section : custom:'a -> 'a t option -> 'a tOpen 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.
val close_section : 'a t -> 'a t option * section_entry list * Univ.ContextSet.t * 'aClose 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
val push_local : Constr.named_declaration -> 'a t -> 'a tExtend the current section with a local definition (cf. push_named).
val push_local_universe_context : UVars.UContext.t -> 'a t -> 'a tExtend the current section with a local universe context. Assumes that the last opened section is polymorphic.
val push_constraints : Univ.ContextSet.t -> 'a t -> 'a tExtend the current section with a global universe context. Assumes that the last opened section is monomorphic.
val push_global : Environ.env -> poly:bool -> section_entry -> 'a t -> 'a tPush a global entry in this section.
Retrieving section data
val all_poly_univs : 'a t -> UVars.Instance.tReturns 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.
val segment_of_constant : Names.Constant.t -> 'a t -> Cooking.cooking_infoSection segment at the time of the constant declaration
val segment_of_inductive : Names.MutInd.t -> 'a t -> Cooking.cooking_infoSection segment at the time of the inductive declaration
val is_in_section : Environ.env -> Names.GlobRef.t -> 'a t -> bool