public bool IsOpenType(GenericTypeMask_I type) { return(Is(type, GenericTypeKind.Open)); }
public bool HasTypeArguments(GenericTypeMask_I type) { return(Is(type, GenericTypeKind.HasTypeArguments)); }
public bool IsClosedType(GenericTypeMask_I type) { return(Is(type, GenericTypeKind.Closed)); }
public bool Is(GenericTypeMask_I type, GenericTypeKind kind) { return((type.GenericKind & kind) == kind); }
public bool HasTypeParameters(GenericTypeMask_I type) { return(Is(type, GenericTypeKind.HasTypeParameters)); }
public static bool HasTypeArguments(this GenericTypeMask_I type) { return(XPal.Api.Runtimic.Infrastructure.Metadata.Members.Typal.HasTypeArguments(type)); }
public static bool IsOpenType(this GenericTypeMask_I type) { return(XPal.Api.Runtimic.Infrastructure.Metadata.Members.Typal.IsOpenType(type)); }