14 implementations of MinNumber
System.Private.CoreLib (13)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
540
static byte INumber<byte>.
MinNumber
(byte x, byte y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1289
static decimal INumber<decimal>.
MinNumber
(decimal x, decimal y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1247
static Int128 INumber<Int128>.
MinNumber
(Int128 x, Int128 y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
654
static short INumber<short>.
MinNumber
(short x, short y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
695
static int INumber<int>.
MinNumber
(int x, int y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
692
static long INumber<long>.
MinNumber
(long x, long y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
687
static nint INumber<nint>.
MinNumber
(nint x, nint y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
617
static sbyte INumber<sbyte>.
MinNumber
(sbyte x, sbyte y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1427
static UInt128 INumber<UInt128>.
MinNumber
(UInt128 x, UInt128 y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
559
static ushort INumber<ushort>.
MinNumber
(ushort x, ushort y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
598
static uint INumber<uint>.
MinNumber
(uint x, uint y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
597
static ulong INumber<ulong>.
MinNumber
(ulong x, ulong y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
600
static nuint INumber<nuint>.
MinNumber
(nuint x, nuint y) => Min(x, y);
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4000
static BigInteger INumber<BigInteger>.
MinNumber
(BigInteger x, BigInteger y) => Min(x, y);
22 references to MinNumber
System.Numerics.Tensors (4)
System\Numerics\Tensors\netcore\TensorOperation.cs (3)
1583
destination = T.
MinNumber
(x, destination);
1593
destination = T.
MinNumber
(x, destination);
1603
destination = T.
MinNumber
(x, destination);
System\Numerics\Tensors\netcore\TensorPrimitives.MinNumber.cs (1)
105
public static T Invoke(T x, T y) => T.
MinNumber
(x, y);
System.Private.CoreLib (17)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
539
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1288
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1002
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1701
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1246
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
653
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
694
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
691
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
686
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1271
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
616
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
999
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1426
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
558
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
597
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
596
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
599
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3999
/// <inheritdoc cref="INumber{TSelf}.
MinNumber
(TSelf, TSelf)" />