Still working on lisp recipes and idioms.
I have a list like this:
((a b c) (d e f) nil (g h))
I'd like to consolidate that to one list,
(a b c d e f g h)
Seems like there oughta be a one-liner for that.
|
|
or
|
|||||||||||||||
|
|
That's a typical homework question. Generally this operation is called FLATTEN (which flattens lists on all levels).
The APPLY variant has the problem that it may run into the CALL-ARGUMENTS-LIMIT when there are more sublists than CALL-ARGUMENTS-LIMIT. See for example also http://rosettacode.org/wiki/Flatten_a_list#Common_Lisp |
|||||
|
|
You can also use
Unfortunately this is much less time and space efficient than the other solutions because it calls |
|||
|
|