From b073172f3b1728330db76365dc1c66231c595071 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Sat, 21 Dec 2019 17:17:38 +0300 Subject: [PATCH 1/2] Update uint README --- uint/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uint/README.md b/uint/README.md index 6d4a30b70..2b731e23c 100644 --- a/uint/README.md +++ b/uint/README.md @@ -2,7 +2,7 @@ ## Description -Provides facilities to construct big unsigned integer types. +Provides facilities to construct big unsigned integer types which use no allocations (stack-based). If you want to use a predefined `U128`, `U256` or `U512` type, take a look at the [`primitive-types`](https://github.com/paritytech/parity-common/tree/master/primitive-types) or [`ethereum-types`](https://github.com/paritytech/parity-common/tree/master/ethereum-types) crate. The focus on the provided big unsigned integer types is performance and cross-platform availability. From a61821a51c1472e96a6d9abebb61a9876d2dbd2f Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Sun, 22 Dec 2019 16:15:47 +0300 Subject: [PATCH 2/2] Update README.md --- uint/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uint/README.md b/uint/README.md index 2b731e23c..557d63991 100644 --- a/uint/README.md +++ b/uint/README.md @@ -2,7 +2,7 @@ ## Description -Provides facilities to construct big unsigned integer types which use no allocations (stack-based). +Provides facilities to construct big unsigned integer types which use no allocations (stack-based, fixed bit length). If you want to use a predefined `U128`, `U256` or `U512` type, take a look at the [`primitive-types`](https://github.com/paritytech/parity-common/tree/master/primitive-types) or [`ethereum-types`](https://github.com/paritytech/parity-common/tree/master/ethereum-types) crate. The focus on the provided big unsigned integer types is performance and cross-platform availability.