Answer by Juho for C++ - a header only library for CSV
A few observations:I would never write x += 1; if I wanted to increment x. I think this is confusing and more prone to error than writing ++x;. Of course, there should be no difference for the...
View ArticleC++ - a header only library for CSV
I started to learn C++ after programming for some years in Java, and this is my first (header-only) library. When switching from another language, it is always difficult not to project the old habits...
View ArticleAnswer by Toby Speight for A header-only library to read CSV
Basic reviewA couple of simple mistakes that are easily addressed:We're using a reserved identifier in the include guard - anything beginning with _ followed by a letter, or containing __ anywhere, is...
View ArticleAnswer by Juho for A header-only library to read CSV
A few observations:I would never write x += 1; if I wanted to increment x. I think this is confusing and more prone to error than writing ++x;. Of course, there should be no difference for the...
View ArticleA header-only library to read CSV
I started to learn C++ after programming for some years in Java, and this is my first (header-only) library. When switching from another language, it is always difficult not to project the old habits...
View Article