Trait std::num::FromStrRadixExperimental [-]  [+] [src]

pub trait FromStrRadix {
    fn from_str_radix(str: &str, radix: uint) -> Option<Self>;
}

A generic trait for converting a string with a radix (base) to a value

Required Methods

fn from_str_radix(str: &str, radix: uint) -> Option<Self>

Implementors