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