mirror of
https://gitlab.com/artofrev/smallint.git
synced 2025-04-03 12:46:38 -04:00
29 lines
739 B
Rust
29 lines
739 B
Rust
#![deny(missing_docs)]
|
|
#![warn(clippy::all)]
|
|
|
|
//! A crate for small integer optimization. Provides the [`SmallInt`] type. When possible this will
|
|
//! inline an integer and store it on the stack if that integer is small. However, for larger values,
|
|
//! this will be instead stored on the heap as a pointer to a `u32` slice, a length, and a sign.
|
|
|
|
// Invariant: If a small integer is within the bounds of an inline value, it must be inline.
|
|
// Invariant: If a small integer is on the heap, the size is the minimum digits required to
|
|
// represent it.
|
|
|
|
mod smallint;
|
|
|
|
pub use crate::smallint::SmallInt;
|
|
pub use crate::smallint::SmallUint;
|
|
|
|
mod error;
|
|
|
|
pub use error::SmallIntError;
|
|
|
|
mod convert;
|
|
mod ops;
|
|
|
|
mod bigint;
|
|
|
|
mod pretty;
|
|
|
|
mod tests;
|