Returns a number one greater than x, a long.
Note - uses a primitive operator subject to overflow.
Returns the difference of x and y, both int or long. Note - uses a
Returns the product of x and y, both int or long. Note - uses a pri
Returns the remainder of division of x by y, both int or long. Note
(defn unchecked-inc
"Returns a number one greater than x, a long.
Note - uses a primitive operator subject to overflow."
{:inline (fn [x] `(. clojure.lang.Numbers (unchecked_inc ~x)))
:added "1.0"}
[x] (. clojure.lang.Numbers (unchecked_inc x)))
Comments top
No comments for unchecked-inc. Log in to add a comment.