# Bounded Integer [![Crate version][crate-badge]][crate] [![docs.rs][docsrs-badge]][docsrs] [![checks][checks-badge]][checks] [crate]: https://crates.io/crates/bounded-integer [crate-badge]: https://img.shields.io/crates/v/bounded-integer.svg [docsrs]: https://docs.rs/bounded-integer [docsrs-badge]: https://img.shields.io/badge/docs.rs-bounded--integer-informational [checks]: https://github.com/Kestrer/bounded-integer/actions?query=workflow%3ACI+branch%3Amaster [checks-badge]: https://github.com/Kestrer/bounded-integer/workflows/CI/badge.svg This crate provides two types of bounded integer for use in Rust. ## Macro-generated bounded integers The [`bounded_integer!`] macro allows you to define your own bounded integer type, given a specific range it inhabits. For example: ```rust bounded_integer! { struct MyInteger { 0..8 } } let num = MyInteger::new(5).unwrap(); assert_eq!(num, 5); ``` This macro supports both `struct`s and `enum`s. See the [`examples`] module for the documentation of generated types. ## Const generics-based bounded integers You can also create ad-hoc bounded integers via types in this library that use const generics, for example: ```rust let num = >::new(5).unwrap(); assert_eq!(num, 5); ``` These integers are shorter to use as they don't require a type declaration or explicit name, and they interoperate better with other integers that have different ranges. However due to the limits of const generics, they do not implement some traits like `Default`. ## `no_std` All the integers in this crate depend only on libcore and so work in `#![no_std]` environments. ## Crate Features By default, no crate features are enabled. - `std`: Interopate with `std` — implies `alloc`. Enables the following things: - An implementation of [`Error`] for [`ParseError`]. - `alloc`: Interopate with `alloc`. Enables the following things: - Support for indexing with the const-generic integers on `Vec` and `VecDeque`. - `macro`: Enable the [`bounded_integer!`] macro. - `types`: Enable the bounded integer types that use const generics. - `arbitrary1`: Implement [`Arbitrary`] for the bounded integers. This is useful when using bounded integers as fuzzing inputs. - `bytemuck1`: Implement [`Contiguous`] for all bounded integers, and [`Zeroable`] for macro-generated bounded integers that support it. - `num-traits02`: Implement [`Bounded`], [`AsPrimitive`], [`FromPrimitive`], [`NumCast`], [`ToPrimitive`], [`CheckedAdd`], [`CheckedDiv`], [`CheckedMul`], [`CheckedNeg`], [`CheckedRem`], [`CheckedSub`], [`MulAdd`], [`SaturatingAdd`], [`SaturatingMul`] and [`SaturatingSub`] for all const-generic bounded integers. - `serde1`: Implement [`Serialize`] and [`Deserialize`] for the bounded integers, making sure all values will never be out of bounds. This has a deprecated alias `serde`. - `zerocopy06`: Implement [`AsBytes`] for all bounded integers, and [`Unaligned`] for macro-generated ones. - `step_trait`: Implement the [`Step`] trait which allows the bounded integers to be easily used in ranges. This will require you to use nightly and place `#![feature(step_trait)]` in your crate root if you use the macro. [`bounded_integer!`]: https://docs.rs/bounded-integer/*/bounded_integer/macro.bounded_integer.html [`examples`]: https://docs.rs/bounded-integer/*/bounded_integer/examples/ [`Arbitrary`]: https://docs.rs/arbitrary/1/arbitrary/trait.Arbitrary.html [`Contiguous`]: https://docs.rs/bytemuck/1/bytemuck/trait.Contiguous.html [`Zeroable`]: https://docs.rs/bytemuck/1/bytemuck/trait.Zeroable.html [`Bounded`]: https://docs.rs/num-traits/0/num_traits/bounds/trait.Bounded.html [`AsPrimitive`]: https://docs.rs/num-traits/0/num_traits/cast/trait.AsPrimitive.html [`FromPrimitive`]: https://docs.rs/num-traits/0/num_traits/cast/trait.FromPrimitive.html [`NumCast`]: https://docs.rs/num-traits/0/num_traits/cast/trait.NumCast.html [`ToPrimitive`]: https://docs.rs/num-traits/0/num_traits/cast/trait.ToPrimitive.html [`CheckedAdd`]: https://docs.rs/num-traits/0/num_traits/ops/checked/trait.CheckedAdd.html [`CheckedDiv`]: https://docs.rs/num-traits/0/num_traits/ops/checked/trait.CheckedDiv.html [`CheckedMul`]: https://docs.rs/num-traits/0/num_traits/ops/checked/trait.CheckedMul.html [`CheckedNeg`]: https://docs.rs/num-traits/0/num_traits/ops/checked/trait.CheckedNeg.html [`CheckedRem`]: https://docs.rs/num-traits/0/num_traits/ops/checked/trait.CheckedRem.html [`CheckedSub`]: https://docs.rs/num-traits/0/num_traits/ops/checked/trait.CheckedSub.html [`MulAdd`]: https://docs.rs/num-traits/0/num_traits/ops/mul_add/trait.MulAdd.html [`SaturatingAdd`]: https://docs.rs/num-traits/0/num_traits/ops/saturating/trait.SaturatingAdd.html [`SaturatingMul`]: https://docs.rs/num-traits/0/num_traits/ops/saturating/trait.SaturatingMul.html [`SaturatingSub`]: https://docs.rs/num-traits/0/num_traits/ops/saturating/trait.SaturatingSub.html [`Serialize`]: https://docs.rs/serde/1/serde/trait.Serialize.html [`Deserialize`]: https://docs.rs/serde/1/serde/trait.Deserialize.html [`AsBytes`]: https://docs.rs/zerocopy/0.6/zerocopy/trait.AsBytes.html [`Unaligned`]: https://docs.rs/zerocopy/0.6/zerocopy/trait.Unaligned.html [`Step`]: https://doc.rust-lang.org/nightly/core/iter/trait.Step.html [`Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html [`ParseError`]: https://docs.rs/bounded-integer/*/bounded_integer/struct.ParseError.html ## License Copyright © 2016, Curtis McEnroe Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.