Struct ibig::fmt::InRadix[][src]

pub struct InRadix<'a> { /* fields omitted */ }

Representation of a UBig or IBig in any radix between 2 and 36 inclusive.

This can be used to format a number in a non-standard radix.

The default format uses lower-case letters a-z for digits 10-35. The “alternative” format ({:#}) uses upper-case letters.

Examples

assert_eq!(format!("{}", ubig!(83).in_radix(3)), "10002");
assert_eq!(format!("{:+010}", ubig!(35).in_radix(36)), "+00000000z");
// For bases 2, 8, 10, 16 we don't have to use `InRadix`:
assert_eq!(format!("{:x}", ubig!(3000)), "bb8");
assert_eq!(format!("{:x}", ibig!(-3000)), "-bb8");

Trait Implementations

impl Display for InRadix<'_>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for InRadix<'a>

impl<'a> Send for InRadix<'a>

impl<'a> Sync for InRadix<'a>

impl<'a> Unpin for InRadix<'a>

impl<'a> UnwindSafe for InRadix<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,