ActionArgs

An action that takes a generic argument.

Constructors

this
this(void function(T) f)

Creates a new instance of the action passing a function pointer.

this
this(void delegate(T) d)

Creates a new instance of the action passing a delegate.

Members

Functions

opCall
void opCall(T arg)

Operator overload for calling Action implicit.

Meta