Macro sugar::max_f []

macro_rules! max_f {
    ( $ x : expr ) => { ... };
    ( $ x : expr , $ ( $ xs : expr ) , + ) => { ... };
}

Returns the highest value (f64) of the passed parameters.

Examples

max_f!(3.1, 7.6, 2.3, 5.0);
= 7.6