concatAll

open fun <T> concatAll(first: Array<T>, rest: Array<Array<T>>): Array<T>

concatenate multiple arrays

Return

first &second … &rest

Parameters

first

start array — must not be null

rest

other Array — must not be null

<T>

element type