by_row!()
public
Switches the mode of this table to row mode. All calls to indexing and
iteration methods will work with rows until the mode is changed again.
This method returns the table and is safe to chain.
# File lib/csv.rb, line 676
def by_row!
@mode = :row
self
end