1CamlinternalLazy(3) OCaml library CamlinternalLazy(3)
2
3
4
6 CamlinternalLazy - Run-time support for lazy values.
7
9 Module CamlinternalLazy
10
12 Module CamlinternalLazy
13 : sig end
14
15
16 Run-time support for lazy values. All functions in this module are for
17 system use only, not for the casual user.
18
19
20
21
22
23 type 'a t = 'a lazy_t
24
25
26
27
28
29 exception Undefined
30
31
32
33
34
35 val force_lazy_block : 'a lazy_t -> 'a
36
37
38
39
40 val force_gen : only_val:bool -> 'a lazy_t -> 'a
41
42
43
44
45
46
47OCamldoc 2023-07-20 CamlinternalLazy(3)