We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d4d550 commit 7cae106Copy full SHA for 7cae106
src/zero_allocs/slice.zig
@@ -333,6 +333,7 @@ pub const FieldParser = struct {
333
334
// Sometimes this gets the starting/ending bits wrong when an
335
// escaped quote happens on a boundary
336
+ // This code helps detect and correct those errors
337
const quote_starts = quote_strings & ~(quote_strings << 1);
338
const quote_ends = quote_strings & ~(quote_strings >> 1);
339
const expected_starts = quote_starts & ~(self._state.prev_quote_ends >> (chunk_size - 1));
0 commit comments