Function fmty::csv_tuple

source ·
pub fn csv_tuple<T>(tuple: T) -> CsvTuple<T>
Expand description

Concatenates tuple items with , between each.

Examples

let value = fmty::csv_tuple(("hola", "mundo"));
assert_eq!(value.to_string(), "hola, mundo");