2 references to Clamp
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1674public static Half Clamp(Half value, Half min, Half max) => (Half)Math.Clamp((float)value, (float)min, (float)max);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
971public static float Clamp(float value, float min, float max) => Math.Clamp(value, min, max);