(unchecked-subtract-int x)
(unchecked-subtract-int x y)
(unchecked-subtract-int x y & more)
If no ys are supplied, returns the negation of x, else subtracts
the ys from x and returns the result.
Source
(defn
unchecked-subtract-int
"If no ys are supplied, returns the negation of x, else subtracts\n the ys from x and returns the result."
([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)))