with_index {|prime, index| ... } -> self
[permalink][rdoc][edit]each_with_index {|prime, index| ... } -> self
with_index -> Enumerator
each_with_index -> Enumerator
-
与えられたブロックに対して、素数を0起点の連番を渡して評価します。
- [RETURN]
- ブロックを与えられた場合は self を返します。 ブロックを与えられなかった場合は Enumerator を返します。
require 'prime' Prime::EratosthenesGenerator.new(10).each_with_index do |prime, index| p [prime, index] end # [2, 0] # [3, 1] # [5, 2] # [7, 3]
[SEE_ALSO] Enumerator#with_index