| Value | Description |
[<OCamlCompatibilityAttribute ("Consider using Lazy.Create instead")>]
val create : (unit -> 'T) -> Lazy<'T> |
Build a lazy (delayed) value from the given computation
|
val force : Lazy<'T> -> 'T |
See Lazy.Force
|
[<OCamlCompatibilityAttribute ("Consider using 'v.Force()' instead")>]
val force_val : Lazy<'T> -> 'T |
See Lazy.Force.
|
[<OCamlCompatibilityAttribute ("Consider using 'lazy' instead")>]
val lazy_from_fun : (unit -> 'T) -> Lazy<'T> |
Build a lazy (delayed) value from the given computation
|
[<OCamlCompatibilityAttribute ("Consider using 'Lazy.CreateFromValue' instead")>]
val lazy_from_val : 'T -> Lazy<'T> |
Build a lazy (delayed) value from the given pre-computed value.
|
[<OCamlCompatibilityAttribute ("Consider using 'Lazy.IsForced' instead")>]
val lazy_is_val : Lazy<'T> -> bool |
Check if a lazy (delayed) value has already been computed
|