All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jruby.ruby_implementations.Integer.times.rb Maven / Gradle / Ivy

There is a newer version: 9.4.5.0_1
Show newest version
class Integer
  def times
    i = 0
    while i < self do
      yield i
      i += 1
    end
  end
end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy