7 implementations of MinMagnitude
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
676static byte INumberBase<byte>.MinMagnitude(byte x, byte y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1497static char INumberBase<char>.MinMagnitude(char x, char y) => (char)Math.Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1563static UInt128 INumberBase<UInt128>.MinMagnitude(UInt128 x, UInt128 y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
695static ushort INumberBase<ushort>.MinMagnitude(ushort x, ushort y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
734static uint INumberBase<uint>.MinMagnitude(uint x, uint y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
733static ulong INumberBase<ulong>.MinMagnitude(ulong x, ulong y) => Min(x, y);
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
736static nuint INumberBase<nuint>.MinMagnitude(nuint x, nuint y) => Min(x, y);
21 references to MinMagnitude
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.MinMagnitude.cs (1)
83public static T Invoke(T x, T y) => T.MinMagnitude(x, y);
System.Private.CoreLib (18)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
675/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1496/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1471/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1167/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1879/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1449/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
826/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
867/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
864/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
859/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1383/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
789/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1184/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1562/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
694/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
733/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
732/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
735/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
4158/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />
System\Numerics\Complex.cs (1)
1256/// <inheritdoc cref="INumberBase{TSelf}.MinMagnitude(TSelf, TSelf)" />