unchecked-subtract-int
(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.
(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)))
(core/defmacro ^::ana/numeric unchecked-subtract-int
([& xs] `(- ~@xs)))