Skip to content

Instantly share code, notes, and snippets.

@seryh
Created October 12, 2016 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seryh/d293c8ec932c275057fbfde5a05c0666 to your computer and use it in GitHub Desktop.
Save seryh/d293c8ec932c275057fbfde5a05c0666 to your computer and use it in GitHub Desktop.
(defn- nils-factory
([] (nils-factory nil))
([data] (lazy-seq (cons data (nils-factory)))))
;; (take 300 (repeat nil)) || (take 300 (nils-factory))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment