2 references to Clamp
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\DefaultInterpolatedStringHandler.cs (1)
632int arraySize = (int)Math.Clamp(newCapacity, MinimumArrayPoolLength, int.MaxValue);
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
587public static uint Clamp(uint value, uint min, uint max) => Math.Clamp(value, min, max);