class CSV::TSV
Public Class Methods
new(data, **options)
click to toggle source
Calls superclass method
CSV::new
# File lib/csv.rb, line 2133 def initialize(data, **options) super(data, **({col_sep: "\t"}.merge(options))) end