#![cfg_attr(not(feature = "std"), no_std)]
#![deny(missing_docs, unused_features)]
#![feature(
test,
decl_macro,
const_trait_impl,
associated_type_defaults,
result_flattening
)]
extern crate self as anyint;
pub mod clamp;
pub mod convert;
pub mod integer;
pub mod non_standard_integer;
pub mod error;
pub mod macros;
#[cfg(feature = "num_traits")]
mod num_traits;
mod ops;
#[cfg(test)]
mod bench;
pub mod prelude {
pub use super::convert::*;
pub use super::integer::int;
pub use super::non_standard_integer::*;
}
pub use integer::int;
#[cfg(doctest)]
mod test_readme {
#[doc = include_str!("../../README.md")]
extern "C" {}
}