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