8 releases
0.1.6 | Apr 10, 2024 |
---|---|
0.1.5 | Aug 8, 2022 |
0.1.4 | Mar 3, 2022 |
0.1.3 | Nov 29, 2018 |
0.0.1 | Oct 21, 2017 |
#39 in Embedded development
9,310 downloads per month
Used in 39 crates
(19 directly)
105KB
2.5K
SLoC
uX
Non standard integer types like
u7
,u9
,u10
,u63
,i7
,i9
etc
When non-standard-width integers are required in an application, the norm is to use a larger container and make sure the value is within range after manipulation. uX aims to take care of this once and for all by:
- Providing
u1
-u127
andi1
-i127
types that should behave as similar as possible to the built in rust types- The methods of the defined types are the same as for the built in types (far from all methods are implemented at this point, but fill out an issue or create a PR if something essential for you is missing)
- Overflow will panic in debug and wrap in release.
- All lossless infallible conversions are possible by using
From
. - All lossless fallible conversions are possible by using
TryFrom
.
The uX types take up as much space as the smallest integer type that can contain them.
License
Licensed under either of
-
Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
-
MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.