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) ); }
Fixed dmd 2.038