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:
Output: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;
The table module is part of the turbo::format module.+--------+------+-----+ |turbo |1234 |0.1 | +--------+------+-----+ |turbo |1235 |0.2 | +--------+------+-----+
-
class RowIterator¶
-
class RowIterator¶