Go to file
2020-04-01 21:18:07 +02:00
src Optimisation. 2020-04-01 21:13:14 +02:00
.gitignore Initial commit. 2019-05-13 12:54:36 +02:00
Cargo.toml Bumped version. 2020-04-01 19:55:25 +02:00
COPYING Copied code from different project. 2019-05-13 12:59:04 +02:00
readme.md Updated example 2020-04-01 21:18:07 +02:00

ascii-table

Print ASCII tables to the terminal.

Example

use ascii_table::AsciiTable;

let ascii_table = AsciiTable::default();
let data = vec![&[1, 2, 3], &[4, 5, 6], &[7, 8, 9]];
ascii_table.print(data);
// ┌───┬───┬───┐
// │ 1 │ 2 │ 3 │
// │ 4 │ 5 │ 6 │
// │ 7 │ 8 │ 9 │
// └───┴───┴───┘