CallbackConfigurer.configure

Accepts a reference to an object that is to be configured by the configurer.

class CallbackConfigurer(T, Dg, Args...)
void
configure
(
ref T object
)
if (
is(Dg == void delegate
(,
T
,
Args
)
) ||
is(Dg == void function
(,
T
,
Args
)
)
||
is(Dg == void delegate
(,
ref T
,
Args
)
)
||
is(Dg == void function
(,
ref T
,
Args
)
)
)

Parameters

object T

An object of type T, that will be configured

Meta