rawUnsignedIntegerAt

fun A_Number.rawUnsignedIntegerAt(index: Int): Long

Extract an unsigned base 2^32 digit from the integer. The index must be in range for the integer's representation.

Return

The unsigned base 2^32 digit as a signed Long to avoid misinterpreting the sign.

Parameters

index

The one-based, little-endian index of the digit to extract. It must be between 1 and the number of digits present.