IoReady.opOpAssign

void opOpAssign(string op : "|")(IoReady other) pure @safe nothrow @nogc

Add readiness bits in place.

Parameters

otherReady bits to add.
void opOpAssign(string op : "&")(IoReady other) pure @safe nothrow @nogc

Keep only intersecting readiness bits in place.

Parameters

otherReady bits to keep.
void opOpAssign(string op : "^")(IoReady other) pure @safe nothrow @nogc

Toggle readiness bits in place.

Parameters

otherReady bits to toggle.