Function f32_ceil

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

Generates the f32.ceil instruction, returning the smallest integer greater than or equal to a.

This method is useful when targeting no_std and is equivalent to std::f32::ceil().