2 references to Min
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (1)
4884
nuint length = Math.
Min
((nuint)(uint)span.Length, (nuint)(uint)other.Length);
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
597
public static nuint Min(nuint x, nuint y) => Math.
Min
(x, y);