2 references to NumericValueSet
Microsoft.CodeAnalysis.CSharp (2)
Utilities\ValueSetFactory.NumericValueSet.cs (2)
29
public static NumericValueSet<T> NoValues(INumericTC<T> tc) => new
NumericValueSet
<T>(ImmutableArray<(T first, T last)>.Empty, tc);
31
internal NumericValueSet(T first, T last, INumericTC<T> tc) :
this
(ImmutableArray.Create((first, last)), tc)