pub trait AsDouble {
    fn as_double(&self) -> f64;
}
Expand description

A trait implemented by f64 and aliases wrapping an f64.

Required methods

Returns the inner f64.

Implementations on Foreign Types

Implementors