tabled

Macro row

Source
macro_rules! row {
    ( $($table:expr), * $(,)? ) => { ... };
    ( $table:expr; $N:expr) => { ... };
}
Expand description

Creates a Table with Display arguments nested within.

The macros allows several tables to be displayed horizontally.

Companion to col!.

ยงExamples

let new_table = row![table1, table2];
let new_table_of_clones = row![table1; 3];
let rows_and_columns = row![
    table1,
    col![table2, table3]
];