Remove all handlers from the signal
@safe void handler() {}; Signal!() onTest; assert(onTest.calculateLength() == 0); onTest.connect(&handler); assert(onTest.calculateLength() == 1); onTest.clear(); assert(onTest.calculateLength() == 0); onTest();
See Implementation
Remove all handlers from the signal