7 instantiations of NintValueSet
Microsoft.CodeAnalysis.CSharp (7)
Utilities\ValueSetFactory.NintValueSet.cs (5)
17public static readonly NintValueSet AllValues = new NintValueSet(hasSmall: true, values: NumericValueSet<int>.AllValues(IntTC.DefaultInstance), hasLarge: true); 19public static readonly NintValueSet NoValues = new NintValueSet(hasSmall: false, values: NumericValueSet<int>.NoValues(IntTC.DefaultInstance), hasLarge: false); 89return new NintValueSet( 101return new NintValueSet( 113return new NintValueSet(
Utilities\ValueSetFactory.NintValueSetFactory.cs (2)
25return new NintValueSet( 34return new NintValueSet(
12 references to NintValueSet
Microsoft.CodeAnalysis.CSharp (12)
Utilities\ValueSetFactory.NintValueSet.cs (9)
17public static readonly NintValueSet AllValues = new NintValueSet(hasSmall: true, values: NumericValueSet<int>.AllValues(IntTC.DefaultInstance), hasLarge: true); 19public static readonly NintValueSet NoValues = new NintValueSet(hasSmall: false, values: NumericValueSet<int>.NoValues(IntTC.DefaultInstance), hasLarge: false); 100var other = (NintValueSet)o; 108IValueSet IValueSet.Intersect(IValueSet other) => this.Intersect((NintValueSet)other); 112var other = (NintValueSet)o; 120IValueSet IValueSet.Union(IValueSet other) => this.Union((NintValueSet)other); 122public override bool Equals(object? obj) => obj is NintValueSet other &&
Utilities\ValueSetFactory.NintValueSetFactory.cs (3)
19IValueSet IValueSetFactory.AllValues => NintValueSet.AllValues; 21IValueSet IValueSetFactory.NoValues => NintValueSet.NoValues; 45return value.IsBad ? NintValueSet.AllValues : Related(relation, IntTC.DefaultInstance.FromConstantValue(value));