9 references to IntTC
Microsoft.CodeAnalysis.CSharp (9)
Utilities\ValueSetFactory.cs (1)
19internal static readonly IValueSetFactory<int> ForInt = NumericValueSetFactory<int, IntTC>.Instance;
Utilities\ValueSetFactory.NintValueSet.cs (2)
17public static readonly NintValueSet AllValues = new NintValueSet(hasSmall: true, values: NumericValueSet<int, IntTC>.AllValues, hasLarge: true); 19public static readonly NintValueSet NoValues = new NintValueSet(hasSmall: false, values: NumericValueSet<int, IntTC>.NoValues, hasLarge: false);
Utilities\ValueSetFactory.NintValueSetFactory.cs (6)
27values: NumericValueSetFactory<int, IntTC>.Instance.Related(relation, value), 36values: (IValueSet<int>)NumericValueSetFactory<int, IntTC>.Instance.Random(expectedSize, random), 41ConstantValue IValueSetFactory.RandomValue(Random random) => ConstantValue.CreateNativeInt(default(IntTC).Random(random)); 45return value.IsBad ? NintValueSet.AllValues : Related(relation, default(IntTC).FromConstantValue(value)); 50var tc = default(IntTC);