1Stdlib.Lazy(3)                   OCaml library                  Stdlib.Lazy(3)
2
3
4

NAME

6       Stdlib.Lazy - no description
7

Module

9       Module   Stdlib.Lazy
10

Documentation

12       Module Lazy
13        : (module Stdlib__lazy)
14
15
16
17
18
19
20
21       type 'a t = 'a CamlinternalLazy.t
22
23
24       A  value  of type 'a Lazy.t is a deferred computation, called a suspen‐
25       sion, that has a result of type 'a .   The  special  expression  syntax
26       lazy  (expr)  makes  a  suspension of the computation of expr , without
27       computing expr itself yet.  "Forcing" the suspension will then  compute
28       expr and return its result. Matching a suspension with the special pat‐
29       tern syntax lazy(pattern) also computes the underlying  expression  and
30       tries to bind it to pattern :
31
32
33           let lazy_option_map f x =
34           match x with
35           | lazy (Some x) -> Some (Lazy.force f x)
36           | _ -> None
37
38
39       Note:  If lazy patterns appear in multiple cases in a pattern-matching,
40       lazy expressions may be forced even outside of the case ultimately  se‐
41       lected  by the pattern matching. In the example above, the suspension x
42       is always computed.
43
44       Note: lazy_t is the built-in type constructor used by the compiler  for
45       the  lazy  keyword.  You should not use it directly.  Always use Lazy.t
46       instead.
47
48       Note: Lazy.force is not thread-safe.  If  you  use  this  module  in  a
49       multi-threaded program, you will need to add some locks.
50
51       Note: if the program is compiled with the -rectypes option, ill-founded
52       recursive definitions of the form let rec x = lazy x or  let  rec  x  =
53       lazy(lazy(...(lazy x))) are accepted by the type-checker and lead, when
54       forced, to ill-formed values that trigger infinite loops in the garbage
55       collector  and  other  parts of the run-time system.  Without the -rec‐
56       types option, such ill-founded recursive definitions  are  rejected  by
57       the type-checker.
58
59
60
61       exception Undefined
62
63
64
65
66
67       val force : 'a t -> 'a
68
69
70       force  x  forces the suspension x and returns its result.  If x has al‐
71       ready been forced, Lazy.force x returns the same  value  again  without
72       recomputing  it.   If  it  raised  an  exception, the same exception is
73       raised again.
74
75
76       Raises Undefined if the forcing of x tries to  force  x  itself  recur‐
77       sively.
78
79
80
81       val force_val : 'a t -> 'a
82
83
84       force_val  x  forces the suspension x and returns its result.  If x has
85       already been forced, force_val x returns the same value  again  without
86       recomputing it.
87
88       If  the computation of x raises an exception, it is unspecified whether
89       force_val x raises the same exception or Lazy.Undefined .
90
91
92       Raises Undefined if the forcing of x tries to  force  x  itself  recur‐
93       sively.
94
95
96
97       val from_fun : (unit -> 'a) -> 'a t
98
99
100       from_fun f is the same as lazy (f ()) but slightly more efficient.
101
102
103       from_fun  should only be used if the function f is already defined.  In
104       particular it is always less efficient to write  from_fun  (fun  ()  ->
105       expr) than lazy expr .
106
107
108       Since 4.00.0
109
110
111
112       val from_val : 'a -> 'a t
113
114
115       from_val  v  returns  an  already-forced suspension of v .  This is for
116       special purposes only and should not be confused with lazy (v) .
117
118
119       Since 4.00.0
120
121
122
123       val is_val : 'a t -> bool
124
125
126       is_val x returns true if x has already been forced and did not raise an
127       exception.
128
129
130       Since 4.00.0
131
132
133
134       val lazy_from_fun : (unit -> 'a) -> 'a t
135
136       Deprecated.  synonym for from_fun .
137
138
139
140       val lazy_from_val : 'a -> 'a t
141
142       Deprecated.  synonym for from_val .
143
144
145
146       val lazy_is_val : 'a t -> bool
147
148       Deprecated.  synonym for is_val .
149
150
151
152
153
154OCamldoc                          2021-07-22                    Stdlib.Lazy(3)
Impressum