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