Module byte_num::into_ascii

source ·

Traits

This traits converts integers to bytes, and is implemented on all integer types. The most important method on this trait is IntoAscii::itoa, which is called in a method-like style. It returns a Vec<u8>, representing the value of self as bytes. Negative numbers also include a - when converted.