Lines Matching refs:isFunctionPointer
885 ~ (isFunctionPointer!T ? " function(" : "(") in fqnType()
1317 static if (!isFunctionPointer!func && !isDelegate!func
2331 if (isFunctionPointer!T || isDelegate!T)
2422 if (isFunctionPointer!T || isDelegate!T)
2991 static if (is(T foo : U*, U) && !isFunctionPointer!T)
3170 static if (is(T foo : U*, U) && !isFunctionPointer!T)
5472 isFunctionPointer!F && isFunctionPointer!G)
7431 enum bool isFunctionPointer(alias T) = is(typeof(*T) == function);
7440 static assert( isFunctionPointer!fpfoo);
7441 static assert( isFunctionPointer!(void function()));
7444 static assert(!isFunctionPointer!dgbar);
7445 static assert(!isFunctionPointer!(void delegate()));
7446 static assert(!isFunctionPointer!foo);
7447 static assert(!isFunctionPointer!bar);
7449 static assert( isFunctionPointer!((int a) {}));