3 references to enum_flag_Category_Mask
System.Private.CoreLib (3)
src\System\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (3)
678public bool IsInterface => (Flags & enum_flag_Category_Mask) == enum_flag_Category_Interface; 682public bool IsNullable => (Flags & enum_flag_Category_Mask) == enum_flag_Category_Nullable; 687public bool IsPrimitive => (Flags & enum_flag_Category_Mask) is enum_flag_Category_PrimitiveValueType or enum_flag_Category_TruePrimitive;