13 implementations of MaxValue
Microsoft.CodeAnalysis.CSharp (13)
Utilities\ValueSetFactory.ByteTC.cs (1)
18
byte INumericTC<byte>.
MaxValue
=> byte.MaxValue;
Utilities\ValueSetFactory.CharTC.cs (1)
19
char INumericTC<char>.
MaxValue
=> char.MaxValue;
Utilities\ValueSetFactory.DecimalTC.cs (1)
29
decimal INumericTC<decimal>.
MaxValue
=> decimal.MaxValue;
Utilities\ValueSetFactory.DoubleTC.cs (1)
18
double INumericTC<double>.
MaxValue
=> double.PositiveInfinity;
Utilities\ValueSetFactory.IntTC.cs (1)
18
int INumericTC<int>.
MaxValue
=> int.MaxValue;
Utilities\ValueSetFactory.LongTC.cs (1)
18
long INumericTC<long>.
MaxValue
=> long.MaxValue;
Utilities\ValueSetFactory.NonNegativeIntTC.cs (1)
18
int INumericTC<int>.
MaxValue
=> int.MaxValue;
Utilities\ValueSetFactory.SByteTC.cs (1)
18
sbyte INumericTC<sbyte>.
MaxValue
=> sbyte.MaxValue;
Utilities\ValueSetFactory.ShortTC.cs (1)
18
short INumericTC<short>.
MaxValue
=> short.MaxValue;
Utilities\ValueSetFactory.SingleTC.cs (1)
18
float INumericTC<float>.
MaxValue
=> float.PositiveInfinity;
Utilities\ValueSetFactory.UIntTC.cs (1)
18
uint INumericTC<uint>.
MaxValue
=> uint.MaxValue;
Utilities\ValueSetFactory.ULongTC.cs (1)
18
ulong INumericTC<ulong>.
MaxValue
=> ulong.MaxValue;
Utilities\ValueSetFactory.UShortTC.cs (1)
18
ushort INumericTC<ushort>.
MaxValue
=> ushort.MaxValue;
8 references to MaxValue
Microsoft.CodeAnalysis.CSharp (8)
Utilities\ValueSetFactory.INumericTC.cs (1)
45
/// when <paramref name="value"/> is <see cref="
MaxValue
"/>.
Utilities\ValueSetFactory.NumericValueSet.cs (4)
26
public static readonly NumericValueSet<T, TTC> AllValues = new NumericValueSet<T, TTC>(default(TTC).MinValue, default(TTC).
MaxValue
);
155
if (tc.Related(LessThan, _intervals[lastIndex].last, tc.
MaxValue
))
157
builder.Add((tc.Next(_intervals[lastIndex].last), tc.
MaxValue
));
216
Debug.Assert(tc.Related(LessThanOrEqual, last, tc.
MaxValue
));
Utilities\ValueSetFactory.NumericValueSetFactory.cs (3)
41
if (tc.Related(GreaterThanOrEqual, value, tc.
MaxValue
))
43
return new NumericValueSet<T, TTC>(tc.Next(value), tc.
MaxValue
);
45
return new NumericValueSet<T, TTC>(value, tc.
MaxValue
);