Class: ECCSV::RecordNode
- Inherits:
-
ParentNode
- Object
- Node
- ParentNode
- ECCSV::RecordNode
- Defined in:
- lib/eccsv/node.rb
Instance Attribute Summary
Attributes inherited from Node
Instance Method Summary collapse
Methods inherited from ParentNode
Methods inherited from Node
Constructor Details
This class inherits a constructor from ECCSV::ParentNode
Instance Method Details
#value ⇒ Object
61 62 63 64 |
# File 'lib/eccsv/node.rb', line 61 def value # TODO: 'consume' children to produce value to reduce memory footprint @value ||= @children[0].value + [@children[1].value] end |