callbackConfigurer
- auto callbackConfigurer(Locator!() locator, void delegate(Locator!(), T, Args) dg, Args args)
- auto callbackConfigurer(Locator!() locator, void function(Locator!(), T, Args) dg, Args args)
- auto callbackConfigurer(Locator!() locator, void delegate(Locator!(), ref T, Args) dg, Args args)
- auto callbackConfigurer(Locator!() locator, void function(Locator!(), ref T, Args) dg, Args args)
aermicioi aedi factory generic_factory
aliasesclassesfunctionsinterfacesmixin templatestemplatesvariables
Configures/modifies data of type T with help of a delegate or function.
Encapsulates data configuration logic using a delegate. The algorithm calls delegate, with a locator, a set of Args, and configured data, in order to modify the data somehow.
Note: If data is not a reference type it is recommended to pass it by reference in order to avoid receiving of a copy and not original one in delegate.