nothings / single_file_libs

List of single-file C/C++ libraries.
8.88k stars 584 forks source link

Added CSV parser #154

Closed vincentlaucsb closed 5 years ago

vincentlaucsb commented 5 years ago

I added https://github.com/vincentlaucsb/csv-parser which is a fast CSV parser/utility library with a modern C++ API. It has many helpful features such as data type casting which I've found to be slightly faster than std::from_chars, but will also compile on C++11.

Cheers, Vince