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