hasOnAccessEmptyValue

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

Members

Manifest constants

hasOnAccessEmptyValue
enum hasOnAccessEmptyValue;
Undocumented in source.
hasOnAccessEmptyValue
enum hasOnAccessEmptyValue;
Undocumented in source.

Examples

struct Foo {}
struct Bar { static void onAccessEmptyValue(E)(E err) {} }
static assert(!hasOnAccessEmptyValue!(Foo, string));
static assert(hasOnAccessEmptyValue!(Bar, string));

Meta