Expand description
Traits for converting to and from Integers, converting to and from strings, and extracting
digits.
Modules§
- from_
bool - An implementation of the
Fromtrait for converting aboolto anInteger. - from_
natural - Functions for converting a
Naturalto anInteger, and an implementation of theFromtrait. - from_
primitive_ float - Implementations of traits for converting a primitive float to an
Integer. - from_
primitive_ int - Implementations of traits for converting a primitive integer to an
Integer. - from_
twos_ complement_ limbs - Functions for constructing an
Integerfrom two’s complementLimbs. - is_
integer - An implementation of
IsInteger, a trait for determining whether a number is an integer. - natural_
from_ integer - Implementations of traits for converting an
Integerto aNatural. - primitive_
float_ from_ integer - Implementations of traits for converting an
Integerto a primitive float. - primitive_
int_ from_ integer - Implementations of traits for converting an
Integerto a primitive integer. - serde
- Implementations of traits for serialization and deserialization using serde.
- string
- Implementations of traits for converting
Integers to and fromStrings. - to_
twos_ complement_ limbs - Functions for extracting two’s complement
Limbs from anInteger.