Function f64_floor

#[must_use = "method returns a new number and does not mutate the original value"]
pub fn f64_floor(a: f64) -> f64

Generates the f64.floor instruction, returning the largest integer less than or equal to a.

This method is useful when targeting no_std and is equivalent to std::f64::floor().