This exception is raised when a lazy or other recursively referential value
is used during the execution of its initialization code
The status of a lazy computation. A future relases of F# may hid this type and thus it should not be used
directly.
Full Type Signature
type LazyStatus<'a> =
| Delayed of (unit -> 'a)
| Value of 'a
| Exception of Exception