Revamp readme

This commit is contained in:
David Tolnay 2019-05-01 18:09:29 -07:00
parent 26dcb96645
commit 35ea54ed6b
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
1 changed files with 49 additions and 41 deletions

View File

@ -3,41 +3,57 @@ itoa
[![Build Status](https://api.travis-ci.org/dtolnay/itoa.svg?branch=master)](https://travis-ci.org/dtolnay/itoa) [![Build Status](https://api.travis-ci.org/dtolnay/itoa.svg?branch=master)](https://travis-ci.org/dtolnay/itoa)
[![Latest Version](https://img.shields.io/crates/v/itoa.svg)](https://crates.io/crates/itoa) [![Latest Version](https://img.shields.io/crates/v/itoa.svg)](https://crates.io/crates/itoa)
[![Rust Documentation](https://img.shields.io/badge/api-rustdoc-blue.svg)](https://docs.rs/itoa)
This crate provides fast functions for printing integer primitives to an This crate provides fast functions for printing integer primitives to an
[`io::Write`](https://doc.rust-lang.org/std/io/trait.Write.html) or a [`io::Write`] or a [`fmt::Write`]. The implementation comes straight from
[`fmt::Write`](https://doc.rust-lang.org/core/fmt/trait.Write.html). The [libcore] but avoids the performance penalty of going through
implementation comes straight from [`fmt::Formatter`].
[libcore](https://github.com/rust-lang/rust/blob/b8214dc6c6fc20d0a660fb5700dca9ebf51ebe89/src/libcore/fmt/num.rs#L201-L254)
but avoids the performance penalty of going through
[`fmt::Formatter`](https://doc.rust-lang.org/std/fmt/struct.Formatter.html).
See also [`dtoa`](https://github.com/dtolnay/dtoa) for printing floating point See also [`dtoa`] for printing floating point primitives.
primitives.
[`io::Write`]: https://doc.rust-lang.org/std/io/trait.Write.html
[`fmt::Write`]: https://doc.rust-lang.org/core/fmt/trait.Write.html
[libcore]: https://github.com/rust-lang/rust/blob/b8214dc6c6fc20d0a660fb5700dca9ebf51ebe89/src/libcore/fmt/num.rs#L201-L254
[`fmt::Formatter`]: https://doc.rust-lang.org/std/fmt/struct.Formatter.html
[`dtoa`]: https://github.com/dtolnay/dtoa
```toml
[dependencies]
itoa = "0.4"
```
## Performance (lower is better) ## Performance (lower is better)
![performance](https://raw.githubusercontent.com/dtolnay/itoa/master/performance.png) ![performance](https://raw.githubusercontent.com/dtolnay/itoa/master/performance.png)
## Functions ## Examples
```rust ```rust
extern crate itoa; use std::{fmt, io};
// write to a vector or other io::Write fn demo_itoa_write() -> io::Result<()> {
// Write to a vector or other io::Write.
let mut buf = Vec::new(); let mut buf = Vec::new();
itoa::write(&mut buf, 128u64)?; itoa::write(&mut buf, 128u64)?;
println!("{:?}", buf); println!("{:?}", buf);
// write to a stack buffer // Write to a stack buffer.
let mut bytes = [b'\0'; 20]; let mut bytes = [0u8; 20];
let n = itoa::write(&mut bytes[..], 128u64)?; let n = itoa::write(&mut bytes[..], 128u64)?;
println!("{:?}", &bytes[..n]); println!("{:?}", &bytes[..n]);
// write to a String Ok(())
}
fn demo_itoa_fmt() -> fmt::Result {
// Write to a string.
let mut s = String::new(); let mut s = String::new();
itoa::fmt(&mut s, 128u64)?; itoa::fmt(&mut s, 128u64)?;
println!("{}", s); println!("{}", s);
Ok(())
}
``` ```
The function signatures are: The function signatures are:
@ -56,27 +72,19 @@ this crate. The return value gives the number of bytes written.
The `write` function is only available when the `std` feature is enabled The `write` function is only available when the `std` feature is enabled
(default is enabled). (default is enabled).
## Dependency <br>
Itoa is available on [crates.io](https://crates.io/crates/itoa). Use the #### License
following in `Cargo.toml`:
```toml <sup>
[dependencies] Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
itoa = "0.4" 2.0</a> or <a href="LICENSE-MIT">MIT license</a> at your option.
``` </sup>
## License <br>
Licensed under either of
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.
### Contribution
<sub>
Unless you explicitly state otherwise, any contribution intentionally submitted Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in itoa by you, as defined in the Apache-2.0 license, shall be for inclusion in this crate by you, as defined in the Apache-2.0 license, shall
dual licensed as above, without any additional terms or conditions. be dual licensed as above, without any additional terms or conditions.
</sub>