Method: Bmg::Operator::Extend#each
- Defined in:
- lib/bmg/operator/extend.rb
#each ⇒ Object
28 29 30 31 32 33 |
# File 'lib/bmg/operator/extend.rb', line 28 def each return to_enum unless block_given? @operand.each do |tuple| yield extend_it(tuple) end end |