8 implementations of AllValues
Microsoft.CodeAnalysis.CSharp (8)
Utilities\ValueSetFactory.BoolValueSetFactory.cs (1)
24IValueSet IValueSetFactory.AllValues => BoolValueSet.AllValues;
Utilities\ValueSetFactory.DecimalValueSetFactory.cs (1)
17IValueSet IValueSetFactory.AllValues => NumericValueSet<decimal, DecimalTC>.AllValues;
Utilities\ValueSetFactory.EnumeratedValueSetFactory.cs (1)
22IValueSet IValueSetFactory.AllValues => EnumeratedValueSet<T, TTC>.AllValues;
Utilities\ValueSetFactory.FloatingValueSetFactory.cs (1)
17IValueSet IValueSetFactory.AllValues => FloatingValueSet<TFloating, TFloatingTC>.AllValues;
Utilities\ValueSetFactory.NintValueSetFactory.cs (1)
19IValueSet IValueSetFactory.AllValues => NintValueSet.AllValues;
Utilities\ValueSetFactory.NonNegativeIntValueSetFactory.cs (1)
22public IValueSet AllValues => NumericValueSet<int, NonNegativeIntTC>.AllValues;
Utilities\ValueSetFactory.NuintValueSetFactory.cs (1)
19IValueSet IValueSetFactory.AllValues => NuintValueSet.AllValues;
Utilities\ValueSetFactory.NumericValueSetFactory.cs (1)
23IValueSet IValueSetFactory.AllValues => NumericValueSet<T, TTC>.AllValues;
1 reference to AllValues
Microsoft.CodeAnalysis.CSharp (1)
Binder\PatternExplainer.cs (1)
598var remainingValues = fac.AllValues;