Bug 3596 – Need alias for using std.algorithm.remove
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
phobos
Product
D
Version
D2
Platform
Other
OS
Windows
Creation time
2009-12-07T08:00:00Z
Last change time
2015-06-09T05:13:46Z
Assigned to
nobody
Creator
rayerd.wiz
Comments
Comment #0 by rayerd.wiz — 2009-12-07T08:00:21Z
import std.stdio;
import std.algorithm;
// Need this for compile correctly in dmd 2.037
alias std.algorithm.remove remove;
void main()
{
int[] a = [1,2,3,4,5];
writeln( remove!("a < 3")(a) );
}