join lists(list of lists)joined lists Type: For any types t([[t]]) -> [t]

Takes a list of lists, and joins them into one list by joining them end-to-end.

Each item in the passed list must be a list. To include single items, wrap them in square brackets [].

ExamplesClick an example to insert it
join lists([[0, 1], [3, 4], [7]])[0, 1, 3, 4, 7]
join lists([[true], [], [false]])[true, false]
join lists([])[]