Expand description
This crate implements 256-bit integer types.
The implementation tries to follow as closely as possible to primitive integer types, and should implement all the common methods and traits as the primitive integer types.
Modules§
- intrinsics
- This module contains intrinsics used by the
I256
andU256
implementations. - prelude
- Convenience re-export of 256-integer types and as- conversion traits.
- serde
- Serde serialization implementation for 256-bit integer types.
Macros§
Structs§
Traits§
- AsI256
- This trait defines
as
conversions (casting) from primitive types toI256
. - AsU256
- This trait defines
as
conversions (casting) from primitive types toU256
.