Performs addition
Performs addition
Performs addition
Performs the bitwise AND operation.
Performs the bitwise AND operation.
Performs the bitwise AND operation.
Performs a comparison between two numbers. If the numbers are equal, it returns 0. If the first number is greater, it returns 1. If the first number is lesser, it returns -1.
Performs a comparison between two numbers. If the numbers are equal, it returns 0. If the first number is greater, it returns 1. If the first number is lesser, it returns -1.
Performs a comparison between two numbers. If the numbers are equal, it returns 0. If the first number is greater, it returns 1. If the first number is lesser, it returns -1.
Performs a comparison between the absolute value of two numbers.
Performs a comparison between the absolute value of two numbers.
Performs a comparison between the absolute value of two numbers.
Performs integer division, disregarding the remainder.
Performs integer division, disregarding the remainder.
Performs integer division, disregarding the remainder.
Performs division and returns an object with two properties: quotient and remainder. The sign of the remainder will match the sign of the dividend.
Performs division and returns an object with two properties: quotient and remainder. The sign of the remainder will match the sign of the dividend.
Performs division and returns an object with two properties: quotient and remainder. The sign of the remainder will match the sign of the dividend.
Checks if two numbers are equal.
Checks if two numbers are equal.
Checks if two numbers are equal.
Checks if the first number is greater than the second.
Checks if the first number is greater than the second.
Checks if the first number is greater than the second.
Checks if the first number is greater than or equal to the second.
Checks if the first number is greater than or equal to the second.
Checks if the first number is greater than or equal to the second.
Returns true if the number is even, false otherwise.
Returns true if the number is negative, false otherwise. Returns false for 0 and true for -0.
Returns true if the number is odd, false otherwise.
Return true if the number is positive, false otherwise. Returns true for 0 and false for -0.
Checks if the first number is lesser than the second.
Checks if the first number is lesser than the second.
Checks if the first number is lesser than the second.
Checks if the first number is less than or equal to the second.
Checks if the first number is less than or equal to the second.
Checks if the first number is less than or equal to the second.
Alias for the subtract method.
Alias for the subtract method.
Alias for the subtract method.
Performs division and returns the remainder, disregarding the quotient. The sign of the remainder will match the sign of the dividend.
Performs division and returns the remainder, disregarding the quotient. The sign of the remainder will match the sign of the dividend.
Performs division and returns the remainder, disregarding the quotient. The sign of the remainder will match the sign of the dividend.
Performs multiplication.
Performs multiplication.
Performs multiplication.
Adds one to the number.
Performs the bitwise NOT operation.
Checks if two numbers are not equal.
Checks if two numbers are not equal.
Checks if two numbers are not equal.
Performs the bitwise OR operation.
Performs the bitwise OR operation.
Performs the bitwise OR operation.
Alias for the divide method.
Alias for the divide method.
Alias for the divide method.
Alias for the add method.
Alias for the add method.
Alias for the add method.
Performs exponentiation. If the exponent is less than 0, pow returns 0. bigInt.zero.pow(0) returns 1.
Performs exponentiation. If the exponent is less than 0, pow returns 0. bigInt.zero.pow(0) returns 1.
Performs exponentiation. If the exponent is less than 0, pow returns 0. bigInt.zero.pow(0) returns 1.
Subtracts one from the number.
Performs subtraction.
Performs subtraction.
Performs subtraction.
Alias for the multiply method.
Alias for the multiply method.
Alias for the multiply method.
Converts a bigInt into a native Javascript number. Loses precision for numbers outside the range.
Converts a bigInt to a string.
Converts a bigInt to a native Javascript number. This override allows you to use native arithmetic operators without explicit conversion.
Performs the bitwise XOR operation.
Performs the bitwise XOR operation.
Performs the bitwise XOR operation.
Returns the absolute value of a bigInt.