method
each
v2_5_5 -
Show latest stable
- Class:
Gem::List
each()public
No documentation available.
# File lib/rubygems/util/list.rb, line 12
def each
n = self
while n
yield n.value
n = n.tail
end
end