The OpenD Programming Language

DList.stableRemove

Removes all elements belonging to r, which must be a range obtained originally from this container.

import std.container.dlist;
struct DList(T)
alias stableRemove = remove

Return Value

A range spanning the remaining elements in the container that initially were right after r.

Complexity: O(1)

Meta