콘텐츠로 이동
한국어

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>