-
-
Save llasram/a94f85ac31b5ad8c1d5c 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))] | |
(map (partial zipmap headers) (rest rows)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment