Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/faster_csv.rb

Instance Method Summary collapse

Instance Method Details

#parse_csv(options = Hash.new) ⇒ Object

Equivalent to FasterCSV::parse_line(self, options).



2022
2023
2024
# File 'lib/faster_csv.rb', line 2022

def parse_csv(options = Hash.new)
  FasterCSV.parse_line(self, options)
end