Method: Sequel::GraphEach#each
- Defined in:
- lib/sequel/extensions/graph_each.rb
#each ⇒ Object
Call graph_each for graphed datasets that are not being eager graphed.
26 27 28 29 30 31 32 |
# File 'lib/sequel/extensions/graph_each.rb', line 26 def each if @opts[:graph] && !@opts[:eager_graph] graph_each{|r| yield r} else super end end |