plusAssign
Allows to append elements to arrays with array += element
syntax.
Parameters
element
will be added to the array.
Allows to quickly add all elements of another iterable to this array with += operator syntax.
Parameters
elements
will be added to the array.
Allows to quickly add all elements of a native array to this array with += operator syntax.
Parameters
elements
will be added to the array.
Allows to append elements to sets with += operator syntax.
Parameters
element
will be added to the set.
Allows to add all elements of another iterable to this set with += operator syntax.
Parameters
elements
will be added to the set.
Allows to add all elements of an array to this set with += operator syntax.
Return
this set.
Parameters
elements
will be added to the set.