Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Reads a CSV file with header parsing
#include <csv.h>
#include <iostream>
int main() {
io::CSVReader<3> in("data.csv");
in.read_header(io::ignore_extra_column, "name", "age", "city");
std::string name; int age; std::string city;
while(in.read_row(name, age, city)) {
std::cout << name << " " << age << " " << city << std::endl;
}
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.