Is there a general way to take a list of items and flatten it to depth zero?
Eg:
((+ 1 2) (+ 3 4) (+ 4 5)) -> (+ 1 2) (+ 3 4) (+ 4 5)
Is there a general way to take a list of items and flatten it to depth zero?
Eg:
((+ 1 2) (+ 3 4) (+ 4 5)) -> (+ 1 2) (+ 3 4) (+ 4 5)