[#69616] [Ruby trunk - Feature #11258] add 'x' mode character for O_EXCL — cremno@...
Issue #11258 has been updated by cremno phobia.
3 messages
2015/06/16
[#69643] [Ruby trunk - Misc #11276] [RFC] compile.c: convert to use ccan/list — normalperson@...
Issue #11276 has been updated by Eric Wong.
3 messages
2015/06/17
[#69751] [Ruby trunk - Bug #11001] 2.2.1 Segmentation fault in reserve_stack() function. — kubo@...
Issue #11001 has been updated by Takehiro Kubo.
3 messages
2015/06/27
[ruby-core:69507] [Ruby trunk - Feature #11007] Prime.each.with_index should accept offset
From:
cielartisan@...
Date:
2015-06-09 18:25:06 UTC
List:
ruby-core #69507
Issue #11007 has been updated by T Yamada.
Hi, any progress about this patch?
The reason why I have proposed this is that I'm anxious about the phrase of http://ruby-doc.org/stdlib-2.2.2/libdoc/prime/rdoc/Prime.html#class-Prime-label-Generators : "Furthermore, it is an external iterator of prime enumeration which is compatible with an Enumerator."
"Compatible Enumerator" should accept with_index(offset)...
----------------------------------------
Feature #11007: Prime.each.with_index should accept offset
https://bugs.ruby-lang.org/issues/11007#change-52808
* Author: T Yamada
* Status: Open
* 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/