Liking cljdoc? Tell your friends :D
Clojure only.

noahtheduke.splint.rules.lint.nested-multiply


*?clj

(*? sexp)
source

nested-multiplyclj

Checks for simple nested multiply.

Examples:

; bad (* x (* y z)) (* x (* y z a))

; good (* x y z) (* x y z a)

Checks for simple nested multiply.

Examples:

; bad
(* x (* y z))
(* x (* y z a))

; good
(* x y z)
(* x y z a)
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close