Function std::num::strconv::float_to_str_common[src]
pub fn float_to_str_common<T: NumCast + Zero + One + PartialEq + PartialOrd + NumStrConv + Float + Div<T, T> + Neg<T> + Rem<T, T> + Mul<T, T>>(num: T, radix: uint, negative_zero: bool, sign: SignFormat, digits: SignificantDigits, exp_format: ExponentFormat, exp_capital: bool) -> (String, bool)
Converts a number to its string representation. This is a wrapper for
to_str_bytes_common(), for details see there.