Lazy<A> typedef

Lazy<A> = A Function()

Represents a lazy value, which is a value returned from a function without arguments.

Implementation

typedef Lazy<A> = A Function();