Macro hsh::hsh_min

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

This macro finds the minimum value of the given values.

Example

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

let min = hsh_min!(1, 2, 3);  // `min` will be 1