core_ux

Crates.iocore_ux
lib.rscore_ux
version0.1.3
sourcesrc
created_at2020-12-22 21:09:11.571886
updated_at2020-12-22 21:09:11.571886
descriptionno_std implementation of the non-standard types u/i1..=63
homepage
repositoryhttps://github.com/Quentincestino/core_uX.git
max_upload_size
id326210
size82,151
Quentin (Quentindeve)

documentation

README

core_UX, a no-std implementation of non-standards integer types

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:

  • Providing u1-u127 and i1-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 is 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 possible lossless conversions is possible by using From.
  • When TryFrom is stabilized fallible conversions will also be supported.

License

Licensed under either of

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.

Commit count: 0

cargo fmt