pub fn maxf(a: f64, b: f64) -> f64
Returns the maximum of two float values.
float
maxf(3.6, 24) # Returns 24.0 maxf(-3.99, -4) # Returns -3.99