tabledMacro col
Source macro_rules! col {
( $($table:expr), * $(,)? ) => { ... };
( $table:expr; $N:expr) => { ... };
}
Expand description
Creates a Table
with Display
arguments nested within.
The macros allows several tables to be displayed vertically.
Companion to row!
.
ยงExamples
let new_table = col![table1, table2];
let new_table_of_clones = col![table1; 3];
let columns_and_rows = col![
table1,
row![table2, table3]
];