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

pub fn int_to_str_bytes_common<T: Int>(num: T, radix: uint, sign: SignFormat, f: |u8|)

Converts an integral number to its string representation as a byte vector. This is meant to be a common base implementation for all integral string conversion functions like to_str() or to_str_radix().

Arguments

Return value

A tuple containing the byte vector, and a boolean flag indicating whether it represents a special value like inf, -inf, NaN or not. It returns a tuple because there can be ambiguity between a special value and a number representation at higher bases.

Failure