| Class | Node::FOR |
| In: |
ext/nodeinfo.c
|
| Parent: | Node |
Represents a loop constructed with the ‘for’ keyword, e.g.:
for var in iter do
body
end
This is equivalent to:
iter.each do |*args| assign args to var body
end
Except that a new block is not created.