3 references to Round
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1371
public static Half Round(Half x, int digits, MidpointRounding mode) => (Half)MathF.
Round
((float)x, digits, mode);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MathF.cs (1)
389
return
Round
(x, digits, MidpointRounding.ToEven);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
683
public static float Round(float x, int digits, MidpointRounding mode) => MathF.
Round
(x, digits, mode);