hasOnAccessEmptyError

Template to determine if hook provides function called on empty error.

@safe
template hasOnAccessEmptyError (
Hook
) {
enum hasOnAccessEmptyError;
enum hasOnAccessEmptyError;
}

Examples

struct Foo {}
struct Bar { static void onAccessEmptyError() {} }
static assert(!hasOnAccessEmptyError!Foo);
static assert(hasOnAccessEmptyError!Bar);

Meta