MutableSet::concat
Returns a MutableVector
that is the concatenation of the values of the
current MutableSet
and the values of the provided Traversable
public function concat<Tu super Tv>(
Traversable<Tu> $traversable,
): MutableVector<Tu>;
The values of the provided Traversable
is concatenated to the end of the
current MutableSet
to produce the returned MutableVector
.
Guide
Parameters
Traversable<Tu>
$traversable
- TheTraversable
to concatenate to the currentMutableSet
.
Returns
MutableVector<Tu>
- The concatenatedMutableVector
.