You can do it yourself with something like:
(def a [2 3 5]) (def b [1 2 3 4 5]) (defn seq-contains? [coll target] (some
A version based on the reducers library can be:
(require '[clojure.core.reducers :as r]) (defn seq-contains? [coll target] (some
EDIT Added seq-contains? the code
Nicolas Modrzyk
source share