parity-common/uint
David Palm 9261b8519e Move conversion inside macro 2018-08-13 16:51:32 +02:00
..
benches Add benchmark 2018-08-10 14:11:53 +02:00
examples Move tests from `primitives/tests` to `uint` 2018-07-13 17:58:26 +02:00
src Move conversion inside macro 2018-08-13 16:51:32 +02:00
tests Move conversion inside macro 2018-08-13 16:51:32 +02:00
Cargo.toml Fix repo meta-data key 2018-08-13 16:07:54 +02:00
README.md Export U256 and U512 2018-08-13 13:56:23 +02:00

README.md

Big unsigned integer types

Implementation of a various large-but-fixed sized unsigned integer types. The functions here are designed to be fast.

The crate exports two commonly used types: U256 and U512. Other sizes can be constructed with construct_uint!(NAME, SIZE_IN_WORDS), e.g. construct_uint!(U128, 2);.

Run tests with cargo test --features=std,impl_quickcheck_arbitrary.