minus
Allows to remove elements from arrays with array - element
syntax.
Return
a new GdxArray with removed element.
Parameters
will not be copied to the new array.
Allows to quickly remove all elements of another iterable from this array with - operator syntax.
Return
a new GdxArray with removed elements.
Parameters
will not be copied to the new array.
Allows to quickly remove all elements of a native array from this array with -= operator syntax.
Return
a new GdxArray with removed elements.
Parameters
will not be copied to the new array.
Allows to remove elements from sets with set - element
syntax.
Return
a new GdxSet with elements from this set except for the element.
Parameters
will not be added to the new set.
Allows to remove all elements of another iterable from this set with - operator syntax.
Return
a new GdxSet with elements from this set except for the elements.
Parameters
will not be added to the new set.
Allows to remove all elements of an array from this set with - operator syntax.
Return
a new GdxSet with elements from this set except for the elements.
Parameters
will not be added to the new set.