#f32 #f64 #round #float

no-std round_float

f64f32四舍五入到指定的位数

12个版本 (2个稳定版)

1.0.1 2024年4月22日
0.0.12 2024年4月12日

817算法

每月30次下载

MIT/Apache

7KB

此crate扩展了浮点数(f64f32)的特质方法round_to_fraction(),允许您将浮点数四舍五入到指定的分数位数。

示例

use round_float::RoundToFraction;

let full_float = 12.34567;
let rounded_float = full_float.round_to_fraction(2);

assert_eq!(rounded_float, 12.35);

依赖项

~195–280KB