makamaka / Text-CSV

comma-separated values manipulator
24 stars 19 forks source link

FR: need method to access the complete (unparsed) line #66

Open XSven opened 7 months ago

XSven commented 7 months ago
while (my $row = $csv->getline ($fh)) {
    my @fields = @$row;
}

Inside of the while loop body I need to access the completed (unparsed) line (usually $_) that $csv has used to parse and to create $row.

XSven commented 7 months ago

In the end I need to have an official method to access $csv->{ _CACHE }->{ tmp } inside of the while loop.