-
-
Save stathissideris/be2201ecff7cb42a328e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn mapify | |
"Return a seq of maps like {:name \"Edward Cullen\" :glitter-index 10}" | |
[rows] | |
(let [headers (map (comp conversions headers->keywords) (first rows))] | |
(for [row (rest rows)] (zipmap headers row)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment