ministd ~master (2023-07-09T14:09:42Z)
Dub
Repo
Callable
ministd
callable
A struct that makes holding any function and/or delegate a breeze!
struct
Callable (
RetT
ParamsT
...
) {
this
(RetT function(ParamsT) fn);
this
(RetT delegate(ParamsT) dg);
RetT
opCall
(ParamsT params);
}
Constructors
this
this
(RetT function(ParamsT) fn)
Undocumented in source.
this
this
(RetT delegate(ParamsT) dg)
Undocumented in source.
Members
Functions
opCall
RetT
opCall
(ParamsT params)
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
ministd
callable
structs
Callable
A struct that makes holding any function and/or delegate a breeze!