Quantcast
Channel: A header-only library to read CSV - Code Review Stack Exchange
Browsing all 5 articles
Browse latest View live

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 Article


C++ - 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 Article


Answer 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 Article

Answer 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 Article

A 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

Browsing all 5 articles
Browse latest View live


Latest Images