Test if type (T) has specified method (m), local or derived
struct Foo { int bar() { return 0; } } assert(hasMethod!(Foo, "bar")() == true); assert(hasMethod!(Foo, "foo")() == false);
See Implementation
Test if type (T) has specified method (m), local or derived