BigInt.uintLength

size_t uintLength() @property const pure nothrow @nogc @safe

Returns the number of 32-bit limbs (digits) in the BigInt.

This property returns the number of uint-sized digits required to represent the magnitude of the BigInt. Since the internal representation uses 64-bit limbs, this is derived by considering each 64-bit limb as potentially two 32-bit limbs.

Returns

The number of 32-bit limbs