function/macro | since v0.0-927 | clojure.core/pos? | Edit |
(pos? x)
Returns true if n
is greater than 0, false otherwise.
Returns true if num is greater than zero, else false
(defn ^boolean pos?
[x] (cljs.core/pos? x))
(core/defmacro ^::ana/numeric pos? [x]
`(> ~x 0))