Lazy
Lazy<
A> =object
Defined in: Core/Lazy.ts:16
A synchronous memoized computation. The factory function runs exactly once —
on the first call to Lazy.evaluate — and the result is cached for all subsequent calls.
Example
Section titled “Example”Type Parameters
Section titled “Type Parameters”A
Properties
Section titled “Properties”
readonlyget: () =>A
Defined in: Core/Lazy.ts:16
Returns
Section titled “Returns”A