grid-printer

Crates.iogrid-printer
lib.rsgrid-printer
version0.1.1
sourcesrc
created_at2021-05-25 00:19:21.537594
updated_at2021-06-01 01:26:49.404427
descriptionAn API to conveniently print formatted two dimensional arrays.
homepage
repository
max_upload_size
id401620
size30,757
(cljacoby)

documentation

README

grid-printer

An API to easily print a two dimensional array to stdout.

Example
let cars = vec![
    vec!["Make", "Model", "Color", "Year", "Price", ],
    vec!["Ford", "Pinto", "Green", "1978", "$750.00", ],
    vec!["Toyota", "Tacoma", "Red", "2006", "$15,475.23", ],
    vec!["Lamborghini", "Diablo", "Yellow", "2001", "$238,459.99", ],
];

let rows = cars.len();
let cols = cars[0].len();
let printer = GridPrinter::builder(rows, cols)
    .col_spacing(4)
    .build();
printer.print(&cars);
Output
Make           Model     Color     Year    Price
Ford           Pinto     Green     1978    $750.00
Toyota         Tacoma    Red       2006    $15,475.23
Lamborghini    Diablo    Yellow    2001    $238,459.99
Commit count: 0

cargo fmt