Skip to content

Int Node Catalog

Int category

Generated from 52 catalog nodes in Math/Int.

Math/Int/AggregateMath/Int/BitwiseMath/Int/OverflowMath/Int/Random

Nodes in this category

Showing 52 of 52 generated node docs.

!= (Int)

Math/Int

Checks if two integers are unequal

% (Int)

Math/Int

Calculates the remainder of integer division

* (Int)

Math/Int

Multiplies two Integers

+ (Int)

Math/Int

Adds two Integers

- (Int)

Math/Int

Subtracts two Integers

/ (Int)

Math/Int

Divides two Integers (handles division by zero)

// (Int)

Math/Int

Divides two integers and truncates towards zero

< (Int)

Math/Int

Checks if the first integer is less than the second

<= (Int)

Math/Int

Checks if the first integer is less than or equal to the second

== (Int)

Math/Int

Checks if two integers are equal

> (Int)

Math/Int

Checks if the first integer is greater than the second

>= (Int)

Math/Int

Checks if the first integer is greater than or equal to the second

Absolute

Math/Int

Returns the absolute value of an Integer

Clamp

Math/Int

Clamps an integer within a range

Decrement

Math/Int

Decreases an integer by a step

Floor Divide (Int)

Math/Int

Divides two integers and rounds towards negative infinity

From Base

Math/Int

Parses an integer from binary, octal, decimal or hexadecimal text

Greatest Common Divisor

Math/Int

Largest integer that divides both inputs

Increment

Math/Int

Increases an integer by a step

Integer Limits

Math/Int

The smallest and largest representable integer

Is Even

Math/Int

Checks whether an integer is divisible by two

Is Negative

Math/Int

Checks whether an integer is less than zero

Is Odd

Math/Int

Checks whether an integer is not divisible by two

Is Positive

Math/Int

Checks whether an integer is greater than zero

Least Common Multiple

Math/Int

Smallest positive integer that both inputs divide

Max

Math/Int

Returns the larger of two integers

Min

Math/Int

Returns the smaller of two integers

Modulo (Int)

Math/Int

Remainder that is always positive, unlike the % operator

Negate (Int)

Math/Int

Flips the sign of an integer

Power

Math/Int

Calculates the power of an integer

Root

Math/Int

Calculates the nth root of an integer

Sign (Int)

Math/Int

Returns -1, 0 or 1 depending on the sign of an integer

To Base

Math/Int

Formats an integer as binary, octal, decimal or hexadecimal text

To Float

Math/Int

Converts an integer into a float

Average (Int)

Math/Int/Aggregate

Arithmetic mean of every integer in an array

Max Of (Int)

Math/Int/Aggregate

Largest integer in an array

Min Of (Int)

Math/Int/Aggregate

Smallest integer in an array

Product (Int)

Math/Int/Aggregate

Multiplies every integer in an array

Sum (Int)

Math/Int/Aggregate

Adds up every integer in an array

& (Int)

Math/Int/Bitwise

Bitwise AND of two integers

<< (Int)

Math/Int/Bitwise

Shifts the bits of an integer to the left

>> (Int)

Math/Int/Bitwise

Shifts the bits of an integer to the right

Count Ones

Math/Int/Bitwise

Number of bits that are set to one

Leading Zeros

Math/Int/Bitwise

Number of zero bits before the highest set bit

Trailing Zeros

Math/Int/Bitwise

Number of zero bits after the lowest set bit

^ (Int)

Math/Int/Bitwise

Bitwise XOR of two integers

| (Int)

Math/Int/Bitwise

Bitwise OR of two integers

~ (Int)

Math/Int/Bitwise

Inverts every bit of an integer

Checked Arithmetic

Math/Int/Overflow

Arithmetic that reports overflow and division by zero instead of failing

Saturating Arithmetic

Math/Int/Overflow

Arithmetic that clamps to the integer limits instead of overflowing

Wrapping Arithmetic

Math/Int/Overflow

Arithmetic that wraps around the integer limits

Random Integer in Range

Math/Int/Random

Generates a random integer within a specified range