minusAssign
Allows to remove elements from arrays with array -= element
syntax.
Return
this array.
Parameters
element
will be removed from the array.
Allows to quickly remove all elements of another iterable from this array with -= operator syntax.
Parameters
elements
will be removed from the array.
Allows to quickly remove all elements of a native array from this array with -= operator syntax.
Parameters
elements
will be removed from the array.
Allows to remove elements from sets -= operator syntax.
Parameters
element
will be removed from this set.
Allows to remove all elements of another iterable from this set with -= operator syntax.
Parameters
elements
will be removed from the set.
Allows to remove all elements of an array from this set with -= operator syntax.
Parameters
elements
will be removed from the set.