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