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