Macro hsh::hsh_max

source ·
macro_rules! hsh_max {
    ($x:expr $(, $y:expr)*) => { ... };
}
Expand description

This macro finds the maximum value of the given values.

Example

extern crate hsh;
use hsh::{ hsh_max };

let max = hsh_max!(1, 2, 3);  // `max` will be 3