Module ibig::prelude[][src]

Reexports the most useful names.

Import all names from this module for convenience.

use ibig::prelude::*;

let a: IBig = ibig!(100).abs();

Re-exports

pub use crate::ibig;
pub use crate::ubig;

Structs

IBig

Signed big integer.

UBig

Unsigned big integer.

Traits

Abs

Absolute value.

AndNot

Bitwise AND NOT operation.

DivEuclid

Compute Euclidean quotient.

DivRem

Compute quotient and remainder at the same time.

DivRemEuclid

Compute Euclidean quotient and remainder at the same time.

NextPowerOfTwo

Next power of two.

RemEuclid

Compute Euclidean remainder.

UnsignedAbs

Unsigned absolute value.