Delete outdated documentation

This commit is contained in:
David Tolnay 2021-12-11 21:08:50 -08:00
parent 58e20ae3f3
commit 1d447bdf15
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 0 additions and 14 deletions

View File

@ -44,20 +44,6 @@ fn main() {
}
```
The function signatures are:
```rust
fn write<W: io::Write, V: itoa::Integer>(writer: W, value: V) -> io::Result<usize>;
fn fmt<W: fmt::Write, V: itoa::Integer>(writer: W, value: V) -> fmt::Result;
```
where `itoa::Integer` is implemented for i8, u8, i16, u16, i32, u32, i64, u64,
i128, u128, isize and usize.
The `write` function is only available when the `std` feature is enabled
(default is enabled). The return value gives the number of bytes written.
<br>
#### License