Determines if f is a function that requires a context pointer.
The type to check Returns A bool
static void f() {} static void fun() { int i; int f() { return i; } static assert(isNestedFunction!(f)); } static assert(!isNestedFunction!f);
See Implementation
Determines if f is a function that requires a context pointer.