Class: Functional::BottomUp
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #call(a) ⇒ Object
- #end ⇒ Object
-
#initialize(start, *a, &e) ⇒ BottomUp
constructor
A new instance of BottomUp.
Methods inherited from Base
Constructor Details
#initialize(start, *a, &e) ⇒ BottomUp
Returns a new instance of BottomUp.
78 79 80 81 |
# File 'lib/functional.rb', line 78 def initialize start, *a, &e @next.call *a, &e @buffer, @start = nil, start end |