Int64
Edit on GitHubOperations on the Int64 type.
Values
Int64.fromNumber
Coverts the argument from a Number
to an Int64
.
Int64.toNumber
Converts the argument from an Int64
to a Number
.
Int64.incr
Increments the number by 1.
Int64.decr
Decrements the number by 1.
Int64.add
Integer addition.
Int64.sub
Integer subtraction.
Int64.mul
Integer multiplication.
Int64.div
Integer division.
Int64.divU
Unsigned integer division.
Int64.rem
Integer remainder.
Int64.remU
Unsigned integer remainder.
Int64.mod
Integer modulo.
Int64.gt
Checks if the first argument is strictly greater than the second argument.
Int64.gte
Checks if the first argument is greater than or equal to the second argument.
Int64.lt
Checks if the first argument is strictly less than the second argument.
Int64.lte
Checks if the first argument is less than or equal to the second argument.
Int64.lnot
Computes the bitwise logical “not” of the argument.
Int64.land
Computes the bitwise logical “and” of the two arguments.
Int64.lor
Computes the bitwise logical “or” of the two arguments.
Int64.lxor
Computes the bitwise logical “xor” of the two arguments.
Int64.shl
Computes the bitwise logical shift left of the first argument by the second argument.
Int64.shr
Computes the bitwise arithmetic (signed) shift right of the first argument by the second argument.
Int64.shrU
Computes the unsigned bitwise logical shift right of the first argument by the second argument.