26 references to Min
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\TensorOperation.cs (3)
1524destination = T.Min(x, destination); 1534destination = T.Min(x, y); 1544destination = T.Min(x, y);
System\Numerics\Tensors\netcore\TensorPrimitives.Clamp.cs (3)
220public static T Invoke(T x, T min, T max) => Vector128<T>.IsSupported || typeof(T) == typeof(Half) ? T.Min(T.Max(x, min), max) : T.Clamp(x, min, max); 233public static T Invoke(T min, T max, T x) => Vector128<T>.IsSupported || typeof(T) == typeof(Half) ? T.Min(T.Max(x, min), max) : T.Clamp(x, min, max); 246public static T Invoke(T max, T x, T min) => Vector128<T>.IsSupported || typeof(T) == typeof(Half) ? T.Min(T.Max(x, min), max) : T.Clamp(x, min, max);
System\Numerics\Tensors\netcore\TensorPrimitives.Min.cs (1)
105public static T Invoke(T x, T y) => T.Min(x, y);
System.Private.CoreLib (19)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
531/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1253/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1012/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1745/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1233/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
631/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
673/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
670/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
693/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1337/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\INumber.cs (1)
35result = TSelf.Min(result, max);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1192/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
610/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1007/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1456/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
536/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
601/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
608/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
607/// <inheritdoc cref="INumber{TSelf}.Min(TSelf, TSelf)" />