Function std::num::strconv::from_str_common[src]

pub fn from_str_common<T: NumCast + Zero + One + PartialEq + PartialOrd + Div<T, T> + Mul<T, T> + Sub<T, T> + Neg<T> + Add<T, T> + NumStrConv + Clone>(buf: &str, radix: uint, negative: bool, fractional: bool, special: bool, exponent: ExponentFormat, empty_zero: bool, ignore_underscores: bool) -> Option<T>

Parses a string as a number. This is a wrapper for from_str_bytes_common(), for details see there.