Returns the sum of nums. (+) returns 0. Does not auto-promote longs, will throw on overflow. See also: +'
(+) ;;=> 0 (+ 1) ;;=> 1 (+ -10) ;;=> -10 (+ 1 2) ;;=> 3 (+ 1 2 3) ;;=> 6 (+ 1/2 1/2) ;;=> 1N (apply + (range 10000000000000 10000000001000)) ;; ArithmeticException: integer overflow
Returns the sum of nums. (+') returns 0. Supports arbitrary precision. See also: +
Returns the product of nums. (*) returns 1. Does not auto-promote longs, will throw on overflow. S...
If no ys are supplied, returns the negation of x, else subtracts the ys from x and returns the res...
Returns the sum of x and y, both long. Note - uses a primitive operator subject to overflow.
Returns a number one greater than num. Does not auto-promote longs, will throw on overflow. See al...
+