Flattens the list of list.
The list of list.
The flattened list.
const aList = singleton(42);const bList = empty<number>();const cList = fromArray([5, 4, 1, 2]);const listList = fromArray([aList, bList, cList]);expect(toArray(concat(listList))).toStrictEqual([42, 5, 4, 1, 2]); Copy
const aList = singleton(42);const bList = empty<number>();const cList = fromArray([5, 4, 1, 2]);const listList = fromArray([aList, bList, cList]);expect(toArray(concat(listList))).toStrictEqual([42, 5, 4, 1, 2]);
Flattens the list of list.