DList.stableRemoveBack

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 stableRemoveBack = removeBack
    struct DList(T)
    alias stableRemoveBack = removeBack
  2. alias stableRemoveBack = removeBack

Meta