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