TLazyKind Enumeration

Definition

Specifies the kind of a lazy type.

Delphi
type TLazyKind = lkNone..lkInterface

Constants

lkNone

Not a lazy type.

lkFunc

Type is Func<TResult> .

lkRecord

Type is Lazy<T> .

lkInterface

Type is ILazy<T> .