Skip to content

Instantly share code, notes, and snippets.

@fr33m0nk
Forked from halgari/reduced_usage.clj
Created November 17, 2022 06:43
Show Gist options
  • Save fr33m0nk/5be82697ee0a41111b3fc38d6697571d to your computer and use it in GitHub Desktop.
Save fr33m0nk/5be82697ee0a41111b3fc38d6697571d to your computer and use it in GitHub Desktop.
(defn r-some?
"Super fast version of clojure.core/some that does minimal allocation"
[pred coll]
(reduce
(fn [acc v]
(if-let [val (pred coll)]
(reduced val)
acc))
false
coll))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment