StaticHap.opOpAssign

void opOpAssign(string op : "~")(Handler handler) @safe nothrow @nogc

Attach a @nogc nothrow delegate handler with `~=` syntax.

The operator form ignores the boolean result returned by attach.

Parameters

handlerDelegate handler to attach; null is ignored.
void opOpAssign(string op : "~")(FunctionHandler handler) @safe nothrow @nogc

Attach a @nogc nothrow free-function handler with `~=` syntax.

The operator form ignores the boolean result returned by attach.

Parameters

handlerFree-function handler to attach; null is ignored.