each()
Yields each row of the data source in turn.
Support for Enumerable.
The data source must be open for reading.
# File lib/csv.rb, line 1760 def each if block_given? while row = shift yield row end else to_enum end end