Checks if T is type that is NotNull
import optional: NotNull; class C {} assert(isNotNull!(NotNull!C) == true); assert(isNotNull!int == false); assert(isNotNull!(int[]) == false);
See Implementation
Checks if T is type that is NotNull