TLazyKind Enumeration

Specifies the kind of a lazy type.

Namespace: Spring
type
 TLazyKind = (
 lkNone,
 lkFunc,
 lkRecord,
 lkInterface
 );

The TLazyKind type exposes the following members.

Show:
 NameDescription
lkFunc

Type is SysUtils|TFunc<T>.

lkInterface

Type is ILazy<T>.

lkNone

Not a lazy type.

lkRecord

Type is Lazy<T>.

Top