MutableVector::concat
Returns a MutableVector that is the concatenation of the values of the
current MutableVector 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 MutableVector to produce the returned MutableVector.
Guide
Parameters
- Traversable<Tu>- $traversable- The- Traversableto concatenate to the current- MutableVector.
Returns
- MutableVector<Tu>- The concatenated- MutableVector.