Module Sequel::GraphEach
In: lib/sequel/extensions/graph_each.rb

Methods

each  

Public Instance methods

Call graph_each for graphed datasets that are not being eager graphed.

[Source]

    # File lib/sequel/extensions/graph_each.rb, line 21
21:     def each
22:       if @opts[:graph] && !@opts[:eager_graph]
23:         graph_each{|r| yield r}
24:       else
25:         super
26:       end
27:     end

[Validate]