Function collections::fmt::radix [] [src]

pub fn radix<T>(x: T, base: u8) -> RadixFmt<T, Radix>
Unstable

: may be renamed or move to a different module

Constructs a radix formatter in the range of 2..36.

Examples

#![feature(core)] fn main() { use std::fmt::radix; assert_eq!(format!("{}", radix(55, 36)), "1j".to_string()); }
use std::fmt::radix;
assert_eq!(format!("{}", radix(55, 36)), "1j".to_string());