Module std::num::strconv

Enums

ExponentFormat
SignFormat
SignificantDigits

Traits

NumStrConv

Functions

float_to_str_bytes_common

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

float_to_str_common

Converts a number to its string representation. This is a wrapper for to_str_bytes_common(), for details see there.

from_str_bytes_common

Parses a byte slice as a number. This is meant to be a common base implementation for all numeric string conversion functions like from_str() or from_str_radix().

from_str_common

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

int_to_str_bytes_common

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().