Macro hsh::hsh_print_vec

source ·
macro_rules! hsh_print_vec {
    ($($v:expr),*) => { ... };
}
Expand description

This macro prints the given vector of values to the console. Each value is printed on a new line.

Example

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

let vec = vec![1, 2, 3];
hsh_print_vec!(vec);  // This will print 1, 2, 3 on separate lines