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>.AllValues(DecimalTC.Instance);
Utilities\ValueSetFactory.EnumeratedValueSetFactory.cs (1)
21IValueSet IValueSetFactory.AllValues => EnumeratedValueSet<T>.AllValues(_tc);
Utilities\ValueSetFactory.FloatingValueSetFactory.cs (1)
20IValueSet IValueSetFactory.AllValues => FloatingValueSet<TFloating>.AllValues(_tc);
Utilities\ValueSetFactory.NintValueSetFactory.cs (1)
19IValueSet IValueSetFactory.AllValues => NintValueSet.AllValues;
Utilities\ValueSetFactory.NonNegativeIntValueSetFactory.cs (1)
21public IValueSet AllValues => NumericValueSet<int>.AllValues(IntTC.NonNegativeInstance);
Utilities\ValueSetFactory.NuintValueSetFactory.cs (1)
19IValueSet IValueSetFactory.AllValues => NuintValueSet.AllValues;
Utilities\ValueSetFactory.NumericValueSetFactory.cs (1)
23IValueSet IValueSetFactory.AllValues => NumericValueSet<T>.AllValues(_tc);
1 reference to AllValues
Microsoft.CodeAnalysis.CSharp (1)
Binder\PatternExplainer.cs (1)
598var remainingValues = fac.AllValues;