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