Vector.removeBack

Removes the value at the 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(log(n)).

  1. void removeBack()
    struct Vector(T, ALLOC = ThreadMem)
    void
    removeBack
    ()
  2. size_t removeBack(size_t howMany)

Meta