RangeReplaceableCollection

  • Mechanica

    Appends a new element.

  • Mechanica

    Removes the first element that matches the given condition.

  • Mechanica

    Removes the first element that matches the given condition and returns a tuple with a new collection and the removed element.

  • Mechanica

    Removes the last element that matches the given condition.

  • Mechanica

    Removes the last element that matches the given condition and returns a tuple with a new collection and the removed element.

  • Mechanica

    Removes all the elements that matches the given condition and returns all the removed element (if any).

    Note

    use filter if you don’t need the removed element.
  • Mechanica

    Removes all the elements that matches the given condition and returns a tuple with a new collection and the removed elements.

    Note

    use filter if you don’t need the removed element.