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 anew
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 anew
collection and the removed element. -
Mechanica
Removes all the elements that matches the given
condition
and returns all the removed element (if any).Note
usefilter
if you don’t need the removed element. -
Mechanica
Removes all the elements that matches the given
condition
and returns a tuple with anew
collection and the removed elements.Note
usefilter
if you don’t need the removed element.
-
Mechanica Removes the first specified element from the collection (if exists).
-
Mechanica
Removes the last specified element from the array (if exists).