parity-common/uint
NikVolf 13195b7bc9 fix div assign 2018-08-22 17:43:34 +03: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 fix div assign 2018-08-22 17:43:34 +03:00
tests Merge branch 'master' into dp/refactor/add-conversions 2018-08-22 14:57:20 +02:00
Cargo.toml Merge branch 'master' into dp/refactor/add-conversions 2018-08-22 14:57:20 +02: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.