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