lazy<A> function

Lazy<A> lazy<A>(
  1. A value
)

Return a Lazy version of value.

Implementation

Lazy<A> lazy<A>(A value) => () => value;