[Issue 10774] 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 14:05:20 PDT 2013
http://d.puremagic.com/issues/show_bug.cgi?id=10774
--- Comment #1 from monkeyworks12 at hotmail.com 2013-08-07 14:05:20 PDT ---
Also, a workaround:
import std.utf;
import std.stdio;
import std.range;
void main()
{
auto str = "石室詩士施氏,嗜獅,誓食十獅。"d;
auto indStr = str.indexed(iota(str.count));
writeln(indStr);
readln();
}
--
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