[Issue 4264] Support opApply in std.algorithm, std.range where possible

2016-12-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4264 Andrei Alexandrescu changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 4264] Support opApply in std.algorithm, std.range where possible

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4264 Andrei Alexandrescu changed: What|Removed |Added Version|unspecified |D2 --

[Issue 4264] Support opApply in std.algorithm, std.range where possible

2012-08-28 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 --- Comment #11 from bearophile_h...@eml.cc 2012-08-28 15:33:46 PDT --- This code: import std.stdio: writeln; struct Iter2 { int stop, current; @property int front() { return current; } @property bool empty() { return current == sto

[Issue 4264] Support opApply in std.algorithm, std.range where possible

2011-05-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 --- Comment #10 from kenn...@gmail.com 2011-05-08 00:00:18 PDT --- *** Issue 5952 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this ma

[Issue 4264] Support opApply in std.algorithm, std.range where possible

2010-08-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 --- Comment #9 from bearophile_h...@eml.cc 2010-08-22 07:48:32 PDT --- > Maybe you should bring it up on the newsgroup. http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D&article_id=115950 -- Configure issuemail: http:/

[Issue 4264] Support opApply in std.algorithm, std.range where possible

2010-08-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 --- Comment #8 from bearophile_h...@eml.cc 2010-08-22 07:39:44 PDT --- Thank you for your answer David Simcha. > Since everything you mention except the opApply issue is fixed either > in 2.048 or in SVN, Yes, indeed now all tests but the one

[Issue 4264] Support opApply in std.algorithm, std.range where possible

2010-08-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4264 David Simcha changed: What|Removed |Added Depends on||2443, 4707 Summary|Various st