Additional operations on Lazy - delayed computations
Function or value | Description |
Full Usage:
Lazy.apply f x
Parameters:
Lazy<('T -> 'U)>
-
The Lazy function.
x : Lazy<'T>
-
The Lazy value.
Returns: Lazy<'U>
A Lazy value of the function applied to the value.
|
|
Full Usage:
Lazy.map mapping x
Parameters:
'T -> 'U
-
The mapping function.
x : Lazy<'T>
-
The Lazy value.
Returns: Lazy<'U>
The mappeed value.
|
|
Full Usage:
Lazy.map2 mapping x y
Parameters:
'T -> 'U -> 'V
-
The mapping function.
x : Lazy<'T>
-
The first Lazy value.
y : Lazy<'U>
-
The second Lazy value.
Returns: Lazy<'V>
The combined value.
|
|
Full Usage:
Lazy.map3 mapping x y z
Parameters:
'T -> 'U -> 'V -> 'W
-
The mapping function.
x : Lazy<'T>
-
The first Lazy value.
y : Lazy<'U>
-
The second Lazy value.
z : Lazy<'V>
-
The third Lazy value.
Returns: Lazy<'W>
The combined value.
|
|