Public Instance methods
each
()
Call graph_each for graphed datasets that are not being eager graphed.
[show source]
# File lib/sequel/extensions/graph_each.rb, line 21 def each if @opts[:graph] && !@opts[:eager_graph] graph_each{|r| yield r} else super end end