parity-common/uint
debris c694d21170 uint tests are compiling again, fixed appveyor.yml and .travis.yml 2018-09-25 11:21:20 +01:00
..
benches Merge branch 'master' into dp/refactor/add-conversions 2018-08-22 14:57:20 +02:00
examples Move tests from `primitives/tests` to `uint` 2018-07-13 17:58:26 +02:00
src uint tests are compiling again, fixed appveyor.yml and .travis.yml 2018-09-25 11:21:20 +01:00
tests Merge branch 'master' into dp/refactor/add-conversions 2018-08-22 14:57:20 +02:00
Cargo.toml uint tests are compiling again, fixed appveyor.yml and .travis.yml 2018-09-25 11:21:20 +01:00
README.md Remove U128 and bump version to 0.4 2018-08-20 09:01:22 +02:00

README.md

Big unsigned integer types

Macros to implement large-but-fixed sized unsigned integer types. The functions here are designed to be fast.

The crate builds and 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 --release.