Tests if something has completed method.
struct A { void completed(); } struct B { void _completed(); } static assert(hasCompleted!A); static assert(!hasCompleted!B);
See Implementation
Tests if something has completed method.