Module lambdaworks_math::unsigned_integer::element

source ·

Structs§

  • A big unsigned integer in base 2^{64} represented as fixed-size array limbs of u64 components. The most significant bit is in the left-most position. That is, the array [a_n, ..., a_0] represents the integer 2^{64 * n} * a_n + … + 2^{64} * a_1 + a_0.

Type Aliases§