Macro itos

Source
macro_rules! itos {
    ($n: expr) => { ... };
}
Expand description

Convert an integer type into it’s string represention as &u8

For example: 123 returns &[49, 50, 51] -100 returns &[45, 49, 48, 48]