Template to determine if hook provides function called on empty error.
struct Foo {} struct Bar { static void onAccessEmptyError() {} } static assert(!hasOnAccessEmptyError!Foo); static assert(hasOnAccessEmptyError!Bar);
See Implementation
Template to determine if hook provides function called on empty error.