inc

function/macrosince v0.0-927 clojure.core/incEdit
(inc x)

Details:

Returns a number one greater than x.


See Also:


Source docstring:
Returns a number one greater than num.
Function code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn inc
  [x] (cljs.core/+ x 1))

Macro code @ clojurescript:src/main/clojure/cljs/core.cljc
(core/defmacro ^::ana/numeric inc [x]
  `(+ ~x 1))