Returns a lazy sequence of the items in coll for which
(pred item) returns false. pred must be free of side-effects.
(defn remove
"Returns a lazy sequence of the items in coll for which
(pred item) returns false. pred must be free of side-effects."
{:added "1.0"
:static true}
[pred coll]
(filter (complement pred) coll))
Comments top
No comments for remove. Log in to add a comment.