Check if fun is a function purely callable with arguments T.
static int foo(int x) @safe pure nothrow { return x; } static assert(isPure!foo); static assert(isPurelyCallableWith!(foo, int));
See Implementation
Check if fun is a function purely callable with arguments T.