Constant std::f32::EPSILON

1.0.0 · source ·
pub const EPSILON: f32 = f32::EPSILON; // 1.1920929E-7f32
👎Deprecating in a future Rust version: replaced by the EPSILON associated constant on f32
Expand description

f32机器精度 值。 请改用 f32::EPSILON

这是 1.0 与下一个较大的可表示数字之间的差异。

Examples

// 弃用的方式
let e = std::f32::EPSILON;

// 预期的方式
let e = f32::EPSILON;
Run