Contains the interface of various IO interop with CSV. More...
Namespaces | |
obsidian | |
obsidian::io | |
obsidian::io::csv | |
For reading and writing csv files. | |
Functions | |
std::vector< std::vector < std::string > > | obsidian::io::csv::readRaw (const std::string &inCsvFilePath) |
Read csv file into a list of list of string fields. | |
void | obsidian::io::csv::writeRaw (const std::string &outCsvFilePath, const std::vector< std::vector< std::string >> &data) |
Write list of list of string fields into a csv file. | |
std::pair< size_t, size_t > | obsidian::io::csv::getRowMatrixDimensions (const std::vector< std::vector< std::string >> &data) |
Extracts row and column dimensions of data in list of list of string fields format. More... | |
Contains the interface of various IO interop with CSV.