The OpenD Programming Language

DList.stableRemoveFront

Removes the value at the front/back of the container. The stable version behaves the same, but guarantees that ranges iterating over the container are never invalidated.

Precondition: !empty

Complexity: O(1).

  1. alias stableRemoveFront = removeFront
    import std.container.dlist;
    struct DList(T)
    alias stableRemoveFront = removeFront
  2. alias stableRemoveFront = removeFront

Meta