concat
append multiple lists into a single list
(list lists) -> list
Returns a list that contains all elements of all lists
. Lists are concatenated in order.
Returns nil
if lists
is nil
.
Returns nil
if any element of lists
is nil
.
Throws an error if any element of lists
is not a list.
Parameters
Name | Type | Description |
---|---|---|
lists |
list | The list of lists to work with |