FloatToInt
FloatToInt Description Convert a float to an integer when no fractional or negative part remains.
Read MoreIntByteLength
IntByteLength Description Get the minimum number of bytes needed to encode an integer.
Read MoreIntCompare
IntCompare Description Compare an integer against another integer-like value. Dispatches on the type of rhs to the matching internal handler.
Read MoreIntFitsU64
IntFitsU64 Description Test whether the integer can be losslessly converted to u64.
Read MoreIntFromBinary
IntFromBinary Description Parse a binary string into an integer. Accepts an optional 0b or 0B prefix.
Read MoreIntFromHexStr
IntFromHexStr Description Parse a hexadecimal string into an integer. This parser expects hexadecimal digits only and does not accept a 0x prefix.
Read MoreIntFromOctStr
IntFromOctStr Description Parse an octal string into an integer. Accepts an optional 0o or 0O prefix.
Read MoreIntFromStr
IntFromStr Description Parse a decimal string into an integer. An optional leading + is accepted.
Read MoreIntFromStrRadix
IntFromStrRadix Description Parse digits in the given radix into an integer. Supports radices from 2 through 36 and ignores underscore separators.
Read MoreIntNextPrime
IntNextPrime Description Find the next probable prime greater than or equal to a value.
Read MoreIntShiftLeft
IntShiftLeft Description Shift an integer left by the given number of bit positions.
Read MoreIntShiftRight
IntShiftRight Description Shift an integer right by the given number of bit positions.
Read MoreIntTrailingZeroCount
IntTrailingZeroCount Description Count trailing zero bits in the integer representation.
Read More