17 implementations of MaxMagnitudeNumber
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
668
static byte INumberBase<byte>.
MaxMagnitudeNumber
(byte x, byte y) => Max(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1548
static char INumberBase<char>.
MaxMagnitudeNumber
(char x, char y) => (char)Math.Max(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1441
static decimal INumberBase<decimal>.
MaxMagnitudeNumber
(decimal x, decimal y) => MaxMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1433
static Int128 INumberBase<Int128>.
MaxMagnitudeNumber
(Int128 x, Int128 y) => MaxMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
805
static short INumberBase<short>.
MaxMagnitudeNumber
(short x, short y) => MaxMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
847
static int INumberBase<int>.
MaxMagnitudeNumber
(int x, int y) => MaxMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
844
static long INumberBase<long>.
MaxMagnitudeNumber
(long x, long y) => MaxMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
867
static nint INumberBase<nint>.
MaxMagnitudeNumber
(nint x, nint y) => MaxMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
784
static sbyte INumberBase<sbyte>.
MaxMagnitudeNumber
(sbyte x, sbyte y) => MaxMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1593
static UInt128 INumberBase<UInt128>.
MaxMagnitudeNumber
(UInt128 x, UInt128 y) => Max(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
673
static ushort INumberBase<ushort>.
MaxMagnitudeNumber
(ushort x, ushort y) => Max(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
738
static uint INumberBase<uint>.
MaxMagnitudeNumber
(uint x, uint y) => Max(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
745
static ulong INumberBase<ulong>.
MaxMagnitudeNumber
(ulong x, ulong y) => Max(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
744
static nuint INumberBase<nuint>.
MaxMagnitudeNumber
(nuint x, nuint y) => Max(x, y);
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (1)
4252
static BigInteger INumberBase<BigInteger>.
MaxMagnitudeNumber
(BigInteger x, BigInteger y) => MaxMagnitude(x, y);
System\Numerics\Complex.cs (1)
669
static Complex INumberBase<Complex>.
MaxMagnitudeNumber
(Complex x, Complex y)
System\Numerics\Complex.Generic.cs (1)
1450
static Complex<T> INumberBase<Complex<T>>.
MaxMagnitudeNumber
(Complex<T> x, Complex<T> y)
26 references to MaxMagnitudeNumber
System.Numerics.Tensors (4)
System\Numerics\Tensors\netcore\TensorOperation.cs (3)
1450
destination = T.
MaxMagnitudeNumber
(x, destination);
1460
destination = T.
MaxMagnitudeNumber
(x, destination);
1470
destination = T.
MaxMagnitudeNumber
(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.MaxMagnitudeNumber.cs (1)
109
public static T Invoke(T x, T y) => T.
MaxMagnitudeNumber
(x, y);
System.Private.CoreLib (19)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
667
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1547
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1440
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1159
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1904
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1432
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
804
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
846
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
843
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
866
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1493
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1307
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
783
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1174
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1592
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
672
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
737
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
744
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
743
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (1)
4251
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
System\Numerics\Complex.cs (1)
668
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />
System\Numerics\Complex.Generic.cs (1)
1449
/// <inheritdoc cref="INumberBase{TSelf}.
MaxMagnitudeNumber
(TSelf, TSelf)" />