Ruby 1.9.2 リファレンスマニュアル > ライブラリ一覧 > library _builtin > class Integer > step
step(limit, step) {|n| ... } -> self
self からはじめ step を足しながら limit を越える 前までブロックを繰り返します。step は負の数も指定できます。 また、limit や step には Float なども指定できます。
Numeric#step も参照。
[SEE_ALSO] Integer#upto, Integer#downto, Integer#times