Declaremods
Rigid / flexible module signature
Which module inline annotations should we honor, either None or the ones whose level is less or equal to the given integer
Kinds of modules
type module_params = (Names.lident list * (Constrexpr.module_ast * inline)) list
type module_expr = Modintern.module_struct_expr * Names.ModPath.t * Modintern.module_kind * Entries.inline
type module_params_expr = (Names.MBId.t list * module_expr) list
type library_name = Names.DirPath.t
module Synterp : sig ... end
module Interp : sig ... end
declare_module id fargs typ exprs
declares module id
, from functor arguments fargs
, with final type typ
. exprs
is usually of length 1 (Module definition with a concrete body), but it could also be empty ("Declare Module", with non-empty typ
), or multiple (body of the shape M <+ N <+ ...).
val start_library : library_name -> unit
val end_library : output_native_objects:bool -> library_name -> Safe_typing.compiled_library * library_objects * library_objects * Vmlibrary.compiled_library * Nativelib.native_library * Library_info.t
iter_all_interp_segments
iterate over all segments, the modules' segments first and then the current segment. Modules are presented in an arbitrary order. The given function is applied to all leaves (together with their section path). Ignores synterp objects.
val iter_all_interp_segments : (Nametab.object_prefix -> Libobject.t -> unit) -> unit
val debug_print_modtab : unit -> Pp.t
For printing modules, process_module_binding
adds names of bound module (and its components) to Nametab. It also loads objects associated to it. It may raise a Failure
when the bound module hasn't an atomic type.
val process_module_binding : Names.MBId.t -> (Constr.t * UVars.AbstractContext.t option) Declarations.module_alg_expr -> unit
Compatibility layer
val import_module : Libobject.open_filter -> export:Lib.export_flag -> Names.ModPath.t -> unit
val declare_module : Names.Id.t -> module_params -> (Constrexpr.module_ast * inline) module_signature -> (Constrexpr.module_ast * inline) list -> Names.ModPath.t
val start_module : Lib.export -> Names.Id.t -> module_params -> (Constrexpr.module_ast * inline) module_signature -> Names.ModPath.t
val end_module : unit -> Names.ModPath.t
val declare_modtype : Names.Id.t -> module_params -> (Constrexpr.module_ast * inline) list -> (Constrexpr.module_ast * inline) list -> Names.ModPath.t
val start_modtype : Names.Id.t -> module_params -> (Constrexpr.module_ast * inline) list -> Names.ModPath.t
val end_modtype : unit -> Names.ModPath.t
val declare_include : (Constrexpr.module_ast * inline) list -> unit