ben-strasser/fast-cpp-csv-parser

Indexing read_row

Closed this issue · 1 comments

Is there a way to access the results of read_row by index?
Ie,

while (in.read_row(one, two, three)){
    for(int i = 0; i < 3; i++){
      final = read_row_results[i];
    }
}

No, there is not. This is by design because

a,b
1,2

and

b,a
2,1

should parse in the same way.