func FormatBool
FormatBool converts a boolean to "true" or "false".
FormatBool converts a boolean to "true" or "false".
FormatInt converts any signed integer type to its base-10 string representation. It accepts int8, int16, int32, int64 and int, and panics on any other type.
FormatUint converts any unsigned integer type to its base-10 string representation. It accepts uint8, uint16, uint32, uint64 and uint, and panics on any other type.
Int64ToString returns the base-10 string representation of an int64.
SafeParseInt64 parses a base-10 string into an int64, panicking when the input is not a valid int64.
Uint64ToString returns the base-10 string representation of a uint64.