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 22
22:     def each
23:       if @opts[:graph] && !@opts[:eager_graph]
24:         graph_each{|r| yield r}
25:       else
26:         super
27:       end
28:     end

[Validate]