We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Its common to use a predicate function with filter remove map functions
(remove (fn [x] x=something) my-sequence)
it's idiomatic to use sets in this case:
(remove #{something} sequence)
Alternatively, (partial = something) or #(= % something)
(partial = something)
#(= % something)
no need for a specialized function