3 references to enum_flag_Category_Mask
System.Private.CoreLib (3)
src\System\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (3)
845
public bool IsInterface => (Flags &
enum_flag_Category_Mask
) == enum_flag_Category_Interface;
850
public bool IsNullable { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return (Flags &
enum_flag_Category_Mask
) == enum_flag_Category_Nullable; } }
857
public bool IsTruePrimitive => (Flags &
enum_flag_Category_Mask
) is enum_flag_Category_TruePrimitive;