Example #1
0
 public bool IsOpenType(GenericTypeMask_I type)
 {
     return(Is(type, GenericTypeKind.Open));
 }
Example #2
0
 public bool HasTypeArguments(GenericTypeMask_I type)
 {
     return(Is(type, GenericTypeKind.HasTypeArguments));
 }
Example #3
0
 public bool IsClosedType(GenericTypeMask_I type)
 {
     return(Is(type, GenericTypeKind.Closed));
 }
Example #4
0
 public bool Is(GenericTypeMask_I type, GenericTypeKind kind)
 {
     return((type.GenericKind & kind) == kind);
 }
Example #5
0
 public bool HasTypeParameters(GenericTypeMask_I type)
 {
     return(Is(type, GenericTypeKind.HasTypeParameters));
 }
Example #6
0
 public static bool HasTypeArguments(this GenericTypeMask_I type)
 {
     return(XPal.Api.Runtimic.Infrastructure.Metadata.Members.Typal.HasTypeArguments(type));
 }
Example #7
0
 public static bool IsOpenType(this GenericTypeMask_I type)
 {
     return(XPal.Api.Runtimic.Infrastructure.Metadata.Members.Typal.IsOpenType(type));
 }