ark::csv::CsvWriterRow
Defined in header “ark/csv/csv_writer.hh”.
A row that is intended to be written out by the CSV-writer.
Methods
-
CsvWriterRow()
Default constructor. Starts with an empty row. -
CsvWriterRow(Types &&… types)
Constructor, initializes with the given list of values. -
void push_back(Type value)
Pushes the given primitive onto the row. -
void push_back(Types &&… types)
Pushes all of the given values onto the row, one at a time. -
bool empty()
Returns true if there are no values in this row.