Class: Abstractivator::Cons::Cell
- Defined in:
- lib/abstractivator/cons.rb
Instance Method Summary collapse
- #head ⇒ Object
-
#initialize(h, t) ⇒ Cell
constructor
A new instance of Cell.
- #tail ⇒ Object
Methods inherited from Array
Constructor Details
#initialize(h, t) ⇒ Cell
Returns a new instance of Cell.
44 45 46 |
# File 'lib/abstractivator/cons.rb', line 44 def initialize(h, t) super([h, t]) end |