Lines Matching refs:itoa
1 itoa chapter
4 …/badge/github-dtolnay/itoa-8da0cb?style=for-the-badge&labelColor=555555&logo=github" height="20">]…
5 …s://img.shields.io/crates/v/itoa.svg?style=for-the-badge&color=fc8d62&logo=rust" height="20">](htt…
6 …itoa-66c2a5?style=for-the-badge&labelColor=555555&logoColor=white&logo=data:image/svg+xml;base64,P…
7 …s.io/github/workflow/status/dtolnay/itoa/CI/master?style=for-the-badge" height="20">](https://gith…
26 itoa = "0.4"
33 ![performance](https://raw.githubusercontent.com/dtolnay/itoa/master/performance.png)
45 itoa::write(&mut buf, 128u64)?;
50 let n = itoa::write(&mut bytes[..], 128u64)?;
59 itoa::fmt(&mut s, 128u64)?;
69 fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
71 fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
74 where `itoa::Integer` is implemented for i8, u8, i16, u16, i32, u32, i64, u64,