Crates.io | core_ux |
lib.rs | core_ux |
version | 0.1.3 |
source | src |
created_at | 2020-12-22 21:09:11.571886 |
updated_at | 2020-12-22 21:09:11.571886 |
description | no_std implementation of the non-standard types u/i1..=63 |
homepage | |
repository | https://github.com/Quentincestino/core_uX.git |
max_upload_size | |
id | 326210 |
size | 82,151 |
The original crate, linked here, was fucked up because it's creator decided to not make it a no-std crate, this is why this one exists Except those 3 firsts lines, I changed nothing from the README
Non standard integer types like
u7
,u9
,u10
,u63
,i7
,i9
etc
When non-standard-width integers is 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:
u1
-u127
and i1
-i127
types that should behave as similar as possible to the built in rust types
From
.TryFrom
is stabilized fallible conversions will also be supported.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.
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.