Module ddash.algorithm.remove

Removes elements from a range

Example

auto arr = [1, 2, 3, 4];
arr.remove!(a => a % 2 == 0);
assert(arr.equal([1, 3]));

Functions

NameDescription
remove(range) Modified the range by removing elements by predicate