isSupportedType.isSupportedType

Undocumented in source.
  1. enum isSupportedType;
  2. enum isSupportedType;
  3. enum isSupportedType;
  4. enum isSupportedType;
    template isSupportedType(T)
    package
    static if(!(isIntegral!T || isBoolean!T || isSomeChar!T || is(Unqual!T == float) || is(Unqual!T == double) || is(T == void)))
    static if(!(isDynamicArray!T))
    static if(!(is(T == struct) || is(T == class) || is(T == interface)))
    static if(isFunctionType!T)
    enum isSupportedType = isSupportedType!(ReturnType!T) && isSupportedTypes!(Parameters!T);
  5. enum isSupportedType;

Meta