fogus (owner)

Revisions

gist: 99935 Download_button fork
public
Public Clone URL: git://gist.github.com/99935.git
Embed All Files: show embed
flatten.clj #
1
2
3
4
5
6
7
8
;; a bit faster flatten
 
(defn flatten [x]
  (if (seq? x)
    (lazy-seq (apply #(lazy-cat %&) (map flatten x)))
    (list x)))