Enabled by default | Safe | Autocorrect | Version Added | Version Updated |
---|---|---|---|---|
false | true | true | 1.10.0 | 1.10.0 |
Assoc takes multiple pairs but relies on seq
stepping. This is slower than
relying on multiple assoc
invocations.
; avoid
(assoc m :k1 1 :k2 2 :k3 3)
; prefer
(-> m
(assoc :k1 1)
(assoc :k2 2)
(assoc :k3 3))
Enabled by default | Safe | Autocorrect | Version Added | Version Updated |
---|---|---|---|---|
false | true | false | 1.10.0 | 1.10.0 |
Avoid use of satisfies?
as it is extremely slow. Restructure your code to rely on protocols or other polymorphic forms.
; avoid
(satisfies? Foo :bar)
Enabled by default | Safe | Autocorrect | Version Added | Version Updated |
---|---|---|---|---|
false | true | true | 1.11 | 1.11 |
=
is quite generalizable and built to handle immutable data. When using a literal, it can be significantly faster to use the underlying Java method.
Currently only checks string literals.
If lint/prefer-method-values
is enabled, then the suggestion will use that syntax.
; avoid
(= "foo" s)
; prefer
(.equals "foo" s)
(String/equals "foo" s)
Enabled by default | Safe | Autocorrect | Version Added | Version Updated |
---|---|---|---|---|
false | true | true | 1.10.0 | 1.10.0 |
clojure.core/get-in
is both polymorphic and relies on seq stepping, which has heavy overhead when the listed slots are keyword literals. Faster to call them as functions.
; avoid
(get-in m [:some-key1 :some-key2 :some-key3])
; prefer
(-> m :some-key1 :some-key2 :some-key3)
Enabled by default | Safe | Autocorrect | Version Added | Version Updated |
---|---|---|---|---|
false | true | true | 1.10.0 | 1.10.0 |
clojure.core/get
is polymorphic and overkill if accessing a map with a keyword literal. The fastest is to fall the map itself as a function but that requires a nil
check, so the safest fast method is to use the keyword as function.
; avoid
(get m :some-key)
; prefer
(:some-key m)
Enabled by default | Safe | Autocorrect | Version Added | Version Updated |
---|---|---|---|---|
false | true | true | 1.11 | 1.11 |
into
has a 3-arity and a 4-arity form. Both pour the given coll into the
new coll but when given a transducer in the 4-arity form, the transducer is
efficiently applied in between.
; avoid
(into [] (map inc (range 100)))
; prefer
(into [] (map inc) (range 100))
Enabled by default | Safe | Autocorrect | Version Added | Version Updated |
---|---|---|---|---|
false | true | true | 1.11 | 1.11 |
clojure.core/merge
is inherently slow. Its major benefit is handling nil values. If there is only a single object to merge in and it's a map literal, that benefit is doubly unused. Better to directly assoc the values in.
NOTE: If the chosen style is :single
and performance/assoc-many
is enabled, the style will be treated as :multiple
to make the warnings consistent.
; avoid
(merge m {:a 1 :b 2 :c 3})
; prefer (chosen style :single (default))
(assoc m :a 1 :b 2 :c 3)
; prefer (chosen style :multiple)
(-> m
(assoc :a 1)
(assoc :b 2)
(assoc :c 3))
Name | Default | Options |
---|---|---|
:chosen-style | :single | :single , :multiple |
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close