Skip to content

Instantly share code, notes, and snippets.

@igrishaev
Created December 15, 2023 14:39
Show Gist options
  • Save igrishaev/d8dfc11346c260dac921888c35ba757e to your computer and use it in GitHub Desktop.
Save igrishaev/d8dfc11346c260dac921888c35ba757e to your computer and use it in GitHub Desktop.
(defn parse-reader [^Reader reader]
(-> reader
(BufferedReader. 0xFFFF)
(.lines)
(.skip 1)
(.map (reify Function
(apply [_ line]
(-> line
(data.csv/read-csv)
(ffirst)
(util/to-edn)))))
(.iterator)
(iterator-seq)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment