Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v6.0.0) is shown here.
each(&block)
public
Iterate through AST, nodes will be yielded depth-first
# File activerecord/lib/arel/nodes/node.rb, line 43
def each(&block)
return enum_for(:each) unless block_given?
::Arel::Visitors::DepthFirst.new(block).accept self
end