[Issue 10774] New: std.range.indexed RangeError when indexing string with std.range.recurrence!"n"(0)
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Aug 7 13:51:30 PDT 2013
http://d.puremagic.com/issues/show_bug.cgi?id=10774
Summary: std.range.indexed RangeError when indexing string with
std.range.recurrence!"n"(0)
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: monkeyworks12 at hotmail.com
--- Comment #0 from monkeyworks12 at hotmail.com 2013-08-07 13:51:29 PDT ---
import std.stdio;
import std.range;
void main()
{
auto str = "石室詩士施氏,嗜獅,誓食十獅。"d;
auto indStr = str.indexed(recurrence!"n"(0));
//core.exception.RangeError at std.range(6177): Range violation
writeln(indStr);
}
This code prints the string correctly, but it seems that it doesn't stop when
the end of the string is reached.
石室詩士施氏,嗜獅,誓食十獅。
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list