7 instantiations of NuintValueSet
Microsoft.CodeAnalysis.CSharp (7)
Utilities\ValueSetFactory.NuintValueSet.cs (5)
17public static readonly NuintValueSet AllValues = new NuintValueSet(values: NumericValueSet<uint>.AllValues(UIntTC.Instance), hasLarge: true); 19public static readonly NuintValueSet NoValues = new NuintValueSet(values: NumericValueSet<uint>.NoValues(UIntTC.Instance), hasLarge: false); 76return new NuintValueSet( 87return new NuintValueSet( 98return new NuintValueSet(
Utilities\ValueSetFactory.NuintValueSetFactory.cs (2)
25return new NuintValueSet( 33return new NuintValueSet(
12 references to NuintValueSet
Microsoft.CodeAnalysis.CSharp (12)
Utilities\ValueSetFactory.NuintValueSet.cs (9)
17public static readonly NuintValueSet AllValues = new NuintValueSet(values: NumericValueSet<uint>.AllValues(UIntTC.Instance), hasLarge: true); 19public static readonly NuintValueSet NoValues = new NuintValueSet(values: NumericValueSet<uint>.NoValues(UIntTC.Instance), hasLarge: false); 86var other = (NuintValueSet)o; 93IValueSet IValueSet.Intersect(IValueSet other) => this.Intersect((NuintValueSet)other); 97var other = (NuintValueSet)o; 104IValueSet IValueSet.Union(IValueSet other) => this.Union((NuintValueSet)other); 106public override bool Equals(object? obj) => obj is NuintValueSet other &&
Utilities\ValueSetFactory.NuintValueSetFactory.cs (3)
19IValueSet IValueSetFactory.AllValues => NuintValueSet.AllValues; 21IValueSet IValueSetFactory.NoValues => NuintValueSet.NoValues; 43return value.IsBad ? NuintValueSet.AllValues : Related(relation, UIntTC.Instance.FromConstantValue(value));