Skip to main content

Module bint

Module bint 

Source
Expand description

§Big Integers

Under the hood bnum is currently used as the backend as most meeting the requirements. Subsequently, the implementation can be replaced in favor of its own implementation, which enables SIMD.

Structs§

Int
Generic Signed integer type composed of 64-bit digits, of arbitrary fixed size which must be known at compile time.
UInt
Generic Unsigned integer type composed of 64-bit digits, of arbitrary fixed size which must be known at compile time.

Enums§

ParseError
Enum to store the various types of errors that can cause parsing Big Integer to fail.

Type Aliases§

I64
64-bit signed integer type.
I128
128-bit signed integer type.
I256
256-bit signed integer type.
I512
512-bit signed integer type.
I1024
1024-bit signed integer type.
U64
64-bit unsigned integer type.
U128
128-bit unsigned integer type.
U256
256-bit unsigned integer type.
U512
512-bit unsigned integer type.
U1024
1024-bit unsigned integer type.