Like the title says, I'm looking for a function in Clojure that returns me the index of the first element in a map to satisfy a condition, I know how to do it, but if something is already available in the API I would like to us it.
Example:
(strange-fn #(even? %) '(1 3 5 7 9 4))
=> 5