unchecked-subtract-int

function/macropreviously cljs.core/unchecked-substract-int clojure.core/unchecked-subtract-intEdit
(unchecked-subtract-int x)
(unchecked-subtract-int x y)
(unchecked-subtract-int x y & more)

Source docstring:
If no ys are supplied, returns the negation of x, else subtracts
the ys from x and returns the result.
Function code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn ^number unchecked-subtract-int
  ([x] (cljs.core/unchecked-subtract-int x))
  ([x y] (cljs.core/unchecked-subtract-int x y))
  ([x y & more] (reduce unchecked-subtract-int (cljs.core/unchecked-subtract-int x y) more)))

Macro code @ clojurescript:src/main/clojure/cljs/core.cljc
(core/defmacro ^::ana/numeric unchecked-subtract-int
  ([& xs] `(- ~@xs)))