From: ruby-core@... Date: 2015-06-12T15:49:53+00:00 Subject: [ruby-core:69557] [Ruby trunk - Feature #11007] [Closed] Prime.each.with_index should accept offset Issue #11007 has been updated by Marc-Andre Lafortune. Status changed from Open to Closed ---------------------------------------- Feature #11007: Prime.each.with_index should accept offset https://bugs.ruby-lang.org/issues/11007#change-52891 * Author: T Yamada * Status: Closed * Priority: Normal * Assignee: Marc-Andre Lafortune ---------------------------------------- I'd like to execute following code: ~~~ Prime.each(10).with_index(1){|e,i| print i,' ',e,"\n" } ~~~ Expected output: ~~~ 1 2 2 3 3 5 4 7 ~~~ I have attached a patch. ---Files-------------------------------- prime.diff (1.09 KB) prime_2.diff (1.2 KB) -- https://bugs.ruby-lang.org/