Macro exar::tab_separated [] [src]

macro_rules! tab_separated {
    ($($x:expr),*) => { ... };
}

Generates a tab separated string from a list of string slices

Examples

#[macro_use]
extern crate exar;

let tab_separated_value = tab_separated!("hello", "world");