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