dtt

Macro dtt_print_vec

Source
macro_rules! dtt_print_vec {
    ($($v:expr),*) => { ... };
}
Expand description

Prints a vector of elements to the console.

§Arguments

  • $($v:expr),*: The elements to be printed.

§Example

use dtt::dtt_print_vec;

dtt_print_vec!(&[1, 2, 3]);