Int32
Edit on GitHubUtilities for working with the Int32 type.
Added in 0.2.0
No other changes yet.
Values
Functions and constants included in the Int32 module.
Int32.fromNumber
Added in 0.2.0
No other changes yet.
Converts a Number to an Int32.
Parameters:
param | type | description |
---|---|---|
number |
Number |
The value to convert |
Returns:
type | description |
---|---|
Int32 |
The Number represented as an Int32 |
Int32.toNumber
Added in 0.2.0
No other changes yet.
Converts an Int32 to a Number.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to convert |
Returns:
type | description |
---|---|
Number |
The Int32 represented as a Number |
Int32.fromUint32
Added in 0.6.0
No other changes yet.
Converts a Uint32 to an Int32.
Parameters:
param | type | description |
---|---|---|
number |
Uint32 |
The value to convert |
Returns:
type | description |
---|---|
Int32 |
The Uint32 represented as an Int32 |
Examples:
Int32.incr
Added in 0.2.0
No other changes yet.
Increments the value by one.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to increment |
Returns:
type | description |
---|---|
Int32 |
The incremented value |
Examples:
Int32.decr
Added in 0.2.0
No other changes yet.
Decrements the value by one.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to decrement |
Returns:
type | description |
---|---|
Int32 |
The decremented value |
Examples:
Int32.(+)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `add` |
Computes the sum of its operands.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
The sum of the two operands |
Examples:
Int32.(-)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `sub` |
Computes the difference of its operands.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
The difference of the two operands |
Examples:
Int32.(*)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `mul` |
Computes the product of its operands.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
The product of the two operands |
Examples:
Int32.(/)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `div` |
Computes the quotient of its operands using signed division.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
The quotient of its operands |
Examples:
Int32.rem
Added in 0.2.0
No other changes yet.
Computes the remainder of the division of its operands using signed division.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
The remainder of its operands |
Examples:
Int32.(%)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `mod` |
Computes the remainder of the division of the first operand by the second. The result will have the sign of the second operand.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
The modulus of its operands |
Throws:
ModuloByZero
- When
y
is zero
Examples:
Int32.rotl
Added in 0.4.0
No other changes yet.
Rotates the bits of the value left by the given number of bits.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to rotate |
amount |
Int32 |
The number of bits to rotate by |
Returns:
type | description |
---|---|
Int32 |
The rotated value |
Examples:
Int32.rotr
Added in 0.4.0
No other changes yet.
Rotates the bits of the value right by the given number of bits.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to rotate |
amount |
Int32 |
The number of bits to rotate by |
Returns:
type | description |
---|---|
Int32 |
The rotated value |
Examples:
Int32.(<<)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `shl` |
Shifts the bits of the value left by the given number of bits.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to shift |
amount |
Int32 |
The number of bits to shift by |
Returns:
type | description |
---|---|
Int32 |
The shifted value |
Examples:
Int32.(>>)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `shr` |
Shifts the bits of the value right by the given number of bits, preserving the sign bit.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to shift |
amount |
Int32 |
The amount to shift by |
Returns:
type | description |
---|---|
Int32 |
The shifted value |
Examples:
Int32.(==)
Added in 0.6.0
version | changes |
---|---|
0.4.0 | Originally named `eq` |
Checks if the first value is equal to the second value.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first value |
y |
Int32 |
The second value |
Returns:
type | description |
---|---|
Bool |
true if the first value is equal to the second value or false otherwise |
Examples:
Int32.(!=)
Added in 0.6.0
version | changes |
---|---|
0.4.0 | Originally named `ne` |
Checks if the first value is not equal to the second value.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first value |
y |
Int32 |
The second value |
Returns:
type | description |
---|---|
Bool |
true if the first value is not equal to the second value or false otherwise |
Examples:
Int32.eqz
Added in 0.4.0
No other changes yet.
Checks if the given value is equal to zero.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to inspect |
Returns:
type | description |
---|---|
Bool |
true if the first value is equal to zero or false otherwise |
Examples:
Int32.(<)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `lt` |
Checks if the first value is less than the second value.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first value |
y |
Int32 |
The second value |
Returns:
type | description |
---|---|
Bool |
true if the first value is less than the second value or false otherwise |
Examples:
Int32.(>)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `gt` |
Checks if the first value is greater than the second value.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first value |
y |
Int32 |
The second value |
Returns:
type | description |
---|---|
Bool |
true if the first value is greater than the second value or false otherwise |
Examples:
Int32.(<=)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `lte` |
Checks if the first value is less than or equal to the second value.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first value |
y |
Int32 |
The second value |
Returns:
type | description |
---|---|
Bool |
true if the first value is less than or equal to the second value or false otherwise |
Examples:
Int32.(>=)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `gte` |
Checks if the first value is greater than or equal to the second value.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first value |
y |
Int32 |
The second value |
Returns:
type | description |
---|---|
Bool |
true if the first value is greater than or equal to the second value or false otherwise |
Examples:
Int32.lnot
Added in 0.2.0
No other changes yet.
Computes the bitwise NOT of the given value.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The given value |
Returns:
type | description |
---|---|
Int32 |
Containing the inverted bits of the given value |
Examples:
Int32.(&)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `land` |
Computes the bitwise AND (&
) on the given operands.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
Containing a 1 in each bit position for which the corresponding bits of both operands are 1 |
Examples:
Int32.(|)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `lor` |
Computes the bitwise OR (|
) on the given operands.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
Containing a 1 in each bit position for which the corresponding bits of either or both operands are 1 |
Examples:
Int32.(^)
Added in 0.6.0
version | changes |
---|---|
0.2.0 | Originally named `lxor` |
Computes the bitwise XOR (^
) on the given operands.
Parameters:
param | type | description |
---|---|---|
x |
Int32 |
The first operand |
y |
Int32 |
The second operand |
Returns:
type | description |
---|---|
Int32 |
Containing a 1 in each bit position for which the corresponding bits of either but not both operands are 1 |
Examples:
Int32.clz
Added in 0.4.0
No other changes yet.
Counts the number of leading zero bits in the value.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to inspect |
Returns:
type | description |
---|---|
Int32 |
The amount of leading zeros |
Examples:
Int32.ctz
Added in 0.4.0
No other changes yet.
Counts the number of trailing zero bits in the value.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to inspect |
Returns:
type | description |
---|---|
Int32 |
The amount of trailing zeros |
Examples:
Int32.popcnt
Added in 0.4.0
No other changes yet.
Counts the number of bits set to 1
in the value, also known as a population count.
Parameters:
param | type | description |
---|---|---|
value |
Int32 |
The value to inspect |
Returns:
type | description |
---|---|
Int32 |
The amount of 1-bits in its operand |
Examples:
Int32.(**)
Added in 0.6.0
No other changes yet.
Computes the exponentiation of the given base and power.
Parameters:
param | type | description |
---|---|---|
base |
Int32 |
The base number |
power |
Int32 |
The exponent number |
Returns:
type | description |
---|---|
Int32 |
The base raised to the given power |
Examples: