Skip to content

Instantly share code, notes, and snippets.

@rotaliator
Created December 3, 2018 09:13
Show Gist options
  • Save rotaliator/4e64776403cc334e89cf240ae25db19c to your computer and use it in GitHub Desktop.
Save rotaliator/4e64776403cc334e89cf240ae25db19c to your computer and use it in GitHub Desktop.
(defn lazy-file-lines [file]
(letfn [(helper [rdr]
(lazy-seq
(if-let [line (.readLine rdr)]
(cons line (helper rdr))
(do (.close rdr) nil))))]
(helper (clojure.java.io/reader file))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment