Issue 1323
Andrej Mitrovic
andrej.mitrovich at gmail.com
Sun Jan 9 11:30:24 PST 2011
While you're at it I would really like to have a remove method in
std.algorithm that can take an ElementType of a range as a predicate:
See my older topic:
http://www.digitalmars.com/d/archives/digitalmars/D/learn/Removing_an_object_from_a_range_23212.html
An example would look like:
Object a, b, c;
Object[] arr = [a, b, c];
remove(arr, b)
// arr == [a, c];
Or should I just file this in bugzilla as a feature request?
More information about the Digitalmars-d
mailing list