format table

class Table

The Table class is the main class of the table module.

It provides a simple way to format data into a table.

Example:

Table process_table;
process_table.add_row({"turbo", "1234", "0.1"});
process_table.add_row({"turbo", "1235", "0.2"});
std::cout << process_table << std::endl;
Output:
+--------+------+-----+
|turbo   |1234  |0.1  |
+--------+------+-----+
|turbo   |1235  |0.2  |
+--------+------+-----+
The table module is part of the turbo::format module.

class RowIterator