1CamlinternalMod(3) OCaml library CamlinternalMod(3)
2
3
4
6 CamlinternalMod - Run-time support for recursive modules.
7
9 Module CamlinternalMod
10
12 Module CamlinternalMod
13 : sig end
14
15
16 Run-time support for recursive modules. All functions in this module
17 are for system use only, not for the casual user.
18
19
20
21
22
23 type shape =
24 | Function
25 | Lazy
26 | Class
27 | Module of shape array
28 | Value of Obj.t
29
30
31
32
33
34 val init_mod : string * int * int -> shape -> Obj.t
35
36
37
38
39 val update_mod : shape -> Obj.t -> Obj.t -> unit
40
41
42
43
44
45
46OCamldoc 2020-09-01 CamlinternalMod(3)