Files
2026-08-27 10:56:38 -06:00

15 lines
312 B
C#

namespace Microsoft.CodeAnalysis.CSharp;
internal static class BinderFlagsExtensions
{
public static bool Includes(this BinderFlags self, BinderFlags other)
{
return (self & other) == other;
}
public static bool IncludesAny(this BinderFlags self, BinderFlags other)
{
return (self & other) != 0;
}
}