[Issue 4264] Various std.algorithm.map problems

2010-08-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 David Simcha dsim...@yahoo.com changed: What|Removed |Added CC||dsim...@yahoo.com ---

[Issue 4264] Various std.algorithm.map problems

2010-07-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 --- Comment #5 from bearophile_h...@eml.cc 2010-07-17 08:40:57 PDT --- yebblies: Ok, I see your point, but if map is going to work with opApply it will no longer be able to provide the standard range interface. Yes, that's what I meant with

[Issue 4264] Various std.algorithm.map problems

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 yebblies yebbl...@gmail.com changed: What|Removed |Added CC||yebbl...@gmail.com ---

[Issue 4264] Various std.algorithm.map problems

2010-07-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 --- Comment #4 from yebblies yebbl...@gmail.com 2010-07-16 21:17:49 PDT --- (In reply to comment #3) But this too doesn't work: import std.algorithm, std.conv, std.range; void main() { auto r1 = map!(to!(string, uint))(iota(20)); }

[Issue 4264] Various std.algorithm.map problems

2010-07-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 --- Comment #1 from bearophile_h...@eml.cc 2010-07-15 16:24:16 PDT --- Another case, I don't know the cause of the problem: import std.algorithm, std.conv, std.range; void main() { auto r1 = map!(to!(int, string))(iota(20)); } dmd