[][src]Function lexical::itoa::i8toa_unsafe

pub unsafe extern "C" fn i8toa_unsafe(
    value: i8,
    first: *mut u8,
    last: *mut u8,
    base: u8
) -> *mut u8

Unsafe, C-like exporter for signed numbers.

Warning

Do not call this function directly, unless you know you have a buffer of sufficient size. No size checking is done in release mode, this function is highly dangerous. Sufficient buffer sizes are as follows:

u8 -> 9 u16 -> 17 u32 -> 33 u64 -> 65