
jruby.ruby_implementations.Integer.times.rb Maven / Gradle / Ivy
class Integer
def times
i = 0
while i < self do
yield i
i += 1
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy
class Integer
def times
i = 0
while i < self do
yield i
i += 1
end
end
end