num.step(limit[, step]) â an_enumerator
Invokes block with the sequence of numbers starting at
num, incremented by step (default 1) on each call. The
loop finishes when the value to be passed to the block is greater than
limit (if step is positive) or less than limit
(if step is negative). If all the arguments are integers, the loop
operates using an integer counter. If any of the arguments are floating
point numbers, all are converted to floats, and the loop is executed
floor(n + n*epsilon)+ 1 times, where n = (limit -
num)/step. Otherwise, the loop starts at num, uses either the
<
or >
operator to compare the counter
against limit, and increments itself using the +
operator.
If no block is given, an enumerator is returned instead.
1.step(10, 2) { |i| print i, " " } Math::E.step(Math::PI, 0.2) { |f| print f, " " }
produces:
1 3 5 7 9 2.71828182845905 2.91828182845905 3.11828182845905
Please login to continue.