uniffi::deps::static_assertions::_core::f64Constant NAN
1.6.0 · Source pub const NAN: f64 = f64::NAN; // NaN_f64
👎Deprecating in a future version: replaced by the NAN
associated constant on f64
Expand description
Not a Number (NaN).
Use f64::NAN
instead.
§Examples
let nan = std::f64::NAN;
let nan = f64::NAN;