7 implementations of MaxMagnitude
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
670static byte INumberBase<byte>.MaxMagnitude(byte x, byte y) => Max(x, y);
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1491static char INumberBase<char>.MaxMagnitude(char x, char y) => (char)Math.Max(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1557static UInt128 INumberBase<UInt128>.MaxMagnitude(UInt128 x, UInt128 y) => Max(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
689static ushort INumberBase<ushort>.MaxMagnitude(ushort x, ushort y) => Max(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
728static uint INumberBase<uint>.MaxMagnitude(uint x, uint y) => Max(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
727static ulong INumberBase<ulong>.MaxMagnitude(ulong x, ulong y) => Max(x, y);
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
730static nuint INumberBase<nuint>.MaxMagnitude(nuint x, nuint y) => Max(x, y);
21 references to MaxMagnitude
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.MaxMagnitude.cs (1)
73public static T Invoke(T x, T y) => T.MaxMagnitude(x, y);
System.Private.CoreLib (18)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
669/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1490/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1449/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1137/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1851/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1406/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
783/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
824/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
821/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
816/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1377/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
746/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1154/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1556/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
688/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
727/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
726/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
729/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
4133/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />
System\Numerics\Complex.cs (1)
1076/// <inheritdoc cref="INumberBase{TSelf}.MaxMagnitude(TSelf, TSelf)" />