11 implementations of IsGreaterThanAsUnsigned
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
1213static bool IBinaryIntegerParseAndFormatInfo<byte>.IsGreaterThanAsUnsigned(byte left, byte right) => left > right;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
2038static bool IBinaryIntegerParseAndFormatInfo<char>.IsGreaterThanAsUnsigned(char left, char right) => left > right;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2137static bool IBinaryIntegerParseAndFormatInfo<Int128>.IsGreaterThanAsUnsigned(Int128 left, Int128 right) => (UInt128)(left) > (UInt128)(right);
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1405static bool IBinaryIntegerParseAndFormatInfo<short>.IsGreaterThanAsUnsigned(short left, short right) => (ushort)(left) > (ushort)(right);
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1471static bool IBinaryIntegerParseAndFormatInfo<int>.IsGreaterThanAsUnsigned(int left, int right) => (uint)(left) > (uint)(right);
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1474static bool IBinaryIntegerParseAndFormatInfo<long>.IsGreaterThanAsUnsigned(long left, long right) => (ulong)(left) > (ulong)(right);
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1368static bool IBinaryIntegerParseAndFormatInfo<sbyte>.IsGreaterThanAsUnsigned(sbyte left, sbyte right) => (byte)(left) > (byte)(right);
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
2172static bool IBinaryIntegerParseAndFormatInfo<UInt128>.IsGreaterThanAsUnsigned(UInt128 left, UInt128 right) => left > right;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
1220static bool IBinaryIntegerParseAndFormatInfo<ushort>.IsGreaterThanAsUnsigned(ushort left, ushort right) => left > right;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
1265static bool IBinaryIntegerParseAndFormatInfo<uint>.IsGreaterThanAsUnsigned(uint left, uint right) => left > right;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
1258static bool IBinaryIntegerParseAndFormatInfo<ulong>.IsGreaterThanAsUnsigned(ulong left, ulong right) => left > right;
2 references to IsGreaterThanAsUnsigned
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (2)
135if (TInteger.IsGreaterThanAsUnsigned(n, TInteger.MaxValueDiv10)) 429overflow |= TInteger.IsGreaterThanAsUnsigned(answer, TInteger.MaxValue + (isNegative ? TInteger.One : TInteger.Zero));