Crates.io | gnaw |
lib.rs | gnaw |
version | 0.0.2 |
source | src |
created_at | 2020-08-26 16:18:24.56411 |
updated_at | 2020-09-10 18:22:41.999752 |
description | Conveniently chip small pieces off a slice or `str` to use elsewhere. |
homepage | https://github.com/Tamschi/gnaw/tree/v0.0.2 |
repository | https://github.com/Tamschi/gnaw |
max_upload_size | |
id | 281015 |
size | 27,922 |
With this crate, you can conveniently chip pieces off a slice or str
to use elsewhere.
Please use cargo-edit to always add the latest version of this library:
cargo add gnaw
use gnaw::{Drain as _, Pop as _, Unshift as _};
let mut text = "abcdefg";
assert_eq!(text.unshift(), Some('a'));
assert_eq!(text.pop(), Some('g'));
let mut drain = text.drain();
assert_eq!(drain.next(), Some('b'));
assert_eq!(drain.next(), Some('c'));
assert_eq!(drain.next_back(), Some('f'));
assert_eq!(drain.next_back(), Some('e'));
drop(drain);
//TODO: Why isn't the mutable borrow released here?
//assert_eq!(text, "d");
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
gnaw
strictly follows Semantic Versioning 2.0.0 with the following exceptions:
This includes the Rust version requirement specified above.
Earlier Rust versions may be compatible, but this can change with minor or patch releases.
Which versions are affected by features and patches can be determined from the respective headings in CHANGELOG.md.