blob: 9f6f78112122103aa985fca89b9897a44a8c752e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * INRIA, CNRS and contributors - Copyright 1999-2018 *)
(* <O___,, * (see CREDITS file for the list of authors) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
(*i*)
open Names
open Cic
open Environ
(*i*)
(* Various operations on modules and module types *)
val module_type_of_module :
ModPath.t option -> module_body -> module_type_body
val is_functor : ('ty,'a) functorize -> bool
val destr_functor : ('ty,'a) functorize -> MBId.t * 'ty * ('ty,'a) functorize
(* adds a module and its components, but not the constraints *)
val add_module : module_body -> env -> env
val add_module_type : ModPath.t -> module_type_body -> env -> env
val strengthen : module_type_body -> ModPath.t -> module_type_body
val subst_and_strengthen : module_body -> ModPath.t -> module_body
val error_incompatible_modtypes :
module_type_body -> module_type_body -> 'a
val error_not_match : Label.t -> structure_field_body -> 'a
val error_with_module : unit -> 'a
val error_no_such_label : Label.t -> 'a
val error_no_such_label_sub :
Label.t -> ModPath.t -> 'a
val error_not_a_constant : Label.t -> 'a
val error_not_a_module : Label.t -> 'a
|