Created
December 10, 2019 22:38
-
-
Save aarkerio/39f882b92489860dcbc31f24d6c5192d to your computer and use it in GitHub Desktop.
This file contains hidden or 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 index-by-id | |
"Get index from a vector of maps using id field" | |
[v id] | |
(first (filter #(= (:id (v %)) id) (range (count v))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment