We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Please add your ideas to this list
(filter (complement ?pred) ?coll) | (filter #(not (?pred ?x)) ?coll) | => (remove ?pred ?coll)
proxy when reify would suffice
proxy
reify
unnecessary anonymous functions
(fn [. ?arg] (?fun . ?arg)) | (fn* [. ?args] (?fun . ?args)) | => ?fun
as in (map #(inc %) coll) => (map inc coll)
(map #(inc %) coll) => (map inc coll)