Template to determine if hook provides function called on empty value.
struct Foo {} struct Bar { static void onAccessEmptyValue(E)(E err) {} } static assert(!hasOnAccessEmptyValue!(Foo, string)); static assert(hasOnAccessEmptyValue!(Bar, string));
See Implementation
Template to determine if hook provides function called on empty value.