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

Returns