14 implementations of MinNumber
System.Private.CoreLib (13)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
535static byte INumber<byte>.MinNumber(byte x, byte y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1260static decimal INumber<decimal>.MinNumber(decimal x, decimal y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1237static Int128 INumber<Int128>.MinNumber(Int128 x, Int128 y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
635static short INumber<short>.MinNumber(short x, short y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
677static int INumber<int>.MinNumber(int x, int y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
674static long INumber<long>.MinNumber(long x, long y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
697static nint INumber<nint>.MinNumber(nint x, nint y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
614static sbyte INumber<sbyte>.MinNumber(sbyte x, sbyte y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1460static UInt128 INumber<UInt128>.MinNumber(UInt128 x, UInt128 y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
540static ushort INumber<ushort>.MinNumber(ushort x, ushort y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
605static uint INumber<uint>.MinNumber(uint x, uint y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
612static ulong INumber<ulong>.MinNumber(ulong x, ulong y) => Min(x, y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
611static nuint INumber<nuint>.MinNumber(nuint x, nuint y) => Min(x, y);
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4100static BigInteger INumber<BigInteger>.MinNumber(BigInteger x, BigInteger y) => Min(x, y);
23 references to MinNumber
System.Numerics.Tensors (4)
System\Numerics\Tensors\netcore\TensorOperation.cs (3)
1635destination = T.MinNumber(x, destination); 1645destination = T.MinNumber(x, destination); 1655destination = T.MinNumber(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.MinNumber.cs (1)
102public static T Invoke(T x, T y) => T.MinNumber(x, y);
System.Private.CoreLib (18)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
534/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1259/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1020/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1751/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1236/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
634/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
676/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
673/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
696/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1340/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1198/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
613/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1015/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1459/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
539/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
604/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
611/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
610/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4099/// <inheritdoc cref="INumber{TSelf}.MinNumber(TSelf, TSelf)" />