Fan.Sys.Type.isGenericType C# (CSharp) Method

isGenericType() public method

A generic type means that one or more of my slots contain signatures using a generic parameter (such as V or K). Fantom supports three built-in generic types: List, Map, and Method. A generic instance (such as string[]) is NOT a generic type (all of its generic parameters have been filled in). User defined generic types are not supported in Fan.
public isGenericType ( ) : bool
return bool
        public virtual bool isGenericType()
        {
            return this == Sys.ListType || this == Sys.MapType || this == Sys.FuncType;
        }