CallbackFactoryAnnotation.this

Constructor accepting a factory delegate, and it's arguments.

struct CallbackFactoryAnnotation(Z, Dg, Args...)
this
(
Dg dg
,
ref Args args
)
if (
(
is(Dg == Z delegate
(
RCIAllocator
,,
Args
)
) ||
is(Dg == Z function
(
RCIAllocator
,,
Args
)
)
)
)

Parameters

dg Dg

delegate that will factory a component

args Args

list of arguments passed to delegate.

Meta