mirror of
https://gitlab.com/arnekeller/ascii-table.git
synced 2024-12-04 21:49:08 +00:00
Optimisation.
This commit is contained in:
parent
4b8c1f5c31
commit
b57e0eb6c8
@ -129,7 +129,7 @@ impl AsciiTable {
|
||||
|
||||
let num_cols = data.iter().map(|x| x.len()).max().unwrap();
|
||||
let data = self.square_data(data, num_cols);
|
||||
let has_header = self.columns.iter().any(|(_, x)| x.header.chars().count() > 0); // TODO: !is_empty
|
||||
let has_header = self.columns.iter().any(|(_, col)| !col.header.is_empty());
|
||||
let widths = self.column_widths(&data, num_cols);
|
||||
|
||||
let mut result = String::new();
|
||||
|
Loading…
Reference in New Issue
Block a user