hasOnAccessEmptyError

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

Members

Manifest constants

hasOnAccessEmptyError
enum hasOnAccessEmptyError;
Undocumented in source.
hasOnAccessEmptyError
enum hasOnAccessEmptyError;
Undocumented in source.

Examples

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

Meta