What's the one-level sequence flattening function in Clojure? I am using apply concat for now, but I wonder if there is a built-in function for that, either in standard library or clojure-contrib.
|
|
|||
|
|
My general first choice is UPDATE: Given the input from Andrew Cooke, I might change my first choice :) |
|||||||||||
|
|
There's no standard function. The problem with
Hence you may want to do something like:
As a more general point, the lack of a built-in function should not usually stop you from defining your own :-) |
|||||
|
|
i use
see also Clojure: Semi-Flattening a nested Sequence which has a update to clarify laziness:
you can see that it evaluates the argument 32 times - this is chunking for efficiency, and is otherwise lazy (it doesn't evaluate the whole list). for a discussion of chunking see comments at end of http://isti.bitbucket.org/2012/04/01/pipes-clojure-choco-1.html |
|||||||
|
|
Are you thinking of
|
|||||
|