17 implementations of MinMagnitudeNumber
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
674
static byte INumberBase<byte>.
MinMagnitudeNumber
(byte x, byte y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1554
static char INumberBase<char>.
MinMagnitudeNumber
(char x, char y) => (char)Math.Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1462
static decimal INumberBase<decimal>.
MinMagnitudeNumber
(decimal x, decimal y) => MinMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1476
static Int128 INumberBase<Int128>.
MinMagnitudeNumber
(Int128 x, Int128 y) => MinMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
848
static short INumberBase<short>.
MinMagnitudeNumber
(short x, short y) => MinMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
890
static int INumberBase<int>.
MinMagnitudeNumber
(int x, int y) => MinMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
887
static long INumberBase<long>.
MinMagnitudeNumber
(long x, long y) => MinMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
910
static nint INumberBase<nint>.
MinMagnitudeNumber
(nint x, nint y) => MinMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
827
static sbyte INumberBase<sbyte>.
MinMagnitudeNumber
(sbyte x, sbyte y) => MinMagnitude(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1599
static UInt128 INumberBase<UInt128>.
MinMagnitudeNumber
(UInt128 x, UInt128 y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
679
static ushort INumberBase<ushort>.
MinMagnitudeNumber
(ushort x, ushort y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
744
static uint INumberBase<uint>.
MinMagnitudeNumber
(uint x, uint y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
751
static ulong INumberBase<ulong>.
MinMagnitudeNumber
(ulong x, ulong y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
750
static nuint INumberBase<nuint>.
MinMagnitudeNumber
(nuint x, nuint y) => Min(x, y);
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (1)
4262
static BigInteger INumberBase<BigInteger>.
MinMagnitudeNumber
(BigInteger x, BigInteger y) => MinMagnitude(x, y);
System\Numerics\Complex.cs (1)
683
static Complex INumberBase<Complex>.
MinMagnitudeNumber
(Complex x, Complex y)
System\Numerics\Complex.Generic.cs (1)
1575
static Complex<T> INumberBase<Complex<T>>.
MinMagnitudeNumber
(Complex<T> x, Complex<T> y)
26 references to MinMagnitudeNumber
System.Numerics.Tensors (4)
System\Numerics\Tensors\netcore\TensorOperation.cs (3)
1598
destination = T.
MinMagnitudeNumber
(x, destination);
1608
destination = T.
MinMagnitudeNumber
(x, destination);
1618
destination = T.
MinMagnitudeNumber
(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.MinMagnitudeNumber.cs (1)
109
public static T Invoke(T x, T y) => T.
MinMagnitudeNumber
(x, y);
System.Private.CoreLib (19)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
673
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1553
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1461
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1189
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1932
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1475
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
847
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
889
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
886
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
909
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1521
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1313
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
826
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1204
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1598
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
678
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
743
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
750
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
749
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (1)
4261
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
System\Numerics\Complex.cs (1)
682
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />
System\Numerics\Complex.Generic.cs (1)
1574
/// <inheritdoc cref="INumberBase{TSelf}.
MinMagnitudeNumber
(TSelf, TSelf)" />