跳转到内容
简体中文

lazy

此内容尚不支持你的语言。

const lazy: <T>(compute) => Lazy<T> = Lazy.of

Defined in: src/util/Lazy.ts:192

Shorthand alias matching Scala’s lazy val.

Build a lazy cell from a thunk. Preferred entry point.

T

() => T

Lazy<T>