Class: CSV::Cell

Inherits:
String
  • Object
show all
Defined in:
lib/rubysl/csv/csv.rb

Overview

deprecated

Instance Method Summary collapse

Constructor Details

#initialize(data = "", is_null = false) ⇒ Cell

Returns a new instance of Cell.



16
17
18
# File 'lib/rubysl/csv/csv.rb', line 16

def initialize(data = "", is_null = false)
  super(is_null ? "" : data)
end

Instance Method Details

#dataObject



20
21
22
# File 'lib/rubysl/csv/csv.rb', line 20

def data
  to_s
end