Skip to content

Instantly share code, notes, and snippets.

@aarkerio
Created December 10, 2019 22:38
Show Gist options
  • Save aarkerio/39f882b92489860dcbc31f24d6c5192d to your computer and use it in GitHub Desktop.
Save aarkerio/39f882b92489860dcbc31f24d6c5192d to your computer and use it in GitHub Desktop.
(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