lisp: consolidate a list-of-lists into a single list?
- by Cheeso
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.