Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
benches/ | 25-Apr-2025 | - | 2,243 | 1,988 | ||
examples/ | 25-Apr-2025 | - | 292 | 244 | ||
src/ | 25-Apr-2025 | - | 13,797 | 8,168 | ||
tests/ | 25-Apr-2025 | - | 5,194 | 4,403 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 6.9 KiB | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 959 | 38 | 34 | |
CHANGELOG.md | D | 25-Apr-2025 | 26.5 KiB | 540 | 502 | |
CONTRIBUTING.md | D | 25-Apr-2025 | 8.6 KiB | 190 | 139 | |
Cargo.lock | D | 25-Apr-2025 | 19.1 KiB | 741 | 654 | |
Cargo.toml | D | 25-Apr-2025 | 1.9 KiB | 106 | 86 | |
LICENSE | D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 25-Apr-2025 | 1 KiB | 26 | 22 | |
METADATA | D | 25-Apr-2025 | 416 | 18 | 17 | |
MODULE_LICENSE_APACHE2 | D | 25-Apr-2025 | 0 | |||
README.md | D | 25-Apr-2025 | 907 | 34 | 22 | |
TEST_MAPPING | D | 25-Apr-2025 | 487 | 23 | 22 | |
cargo_embargo.json | D | 25-Apr-2025 | 52 | 5 | 4 |
README.md
1# Itertools 2 3Extra iterator adaptors, functions and macros. 4 5Please read the [API documentation here](https://docs.rs/itertools/). 6 7How to use with Cargo: 8 9```toml 10[dependencies] 11itertools = "0.13.0" 12``` 13 14How to use in your crate: 15 16```rust 17use itertools::Itertools; 18``` 19 20## How to contribute 21If you're not sure what to work on, try checking the [help wanted](https://github.com/rust-itertools/itertools/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) label. 22 23See our [CONTRIBUTING.md](https://github.com/rust-itertools/itertools/blob/master/CONTRIBUTING.md) for a detailed guide. 24 25## License 26 27Dual-licensed to be compatible with the Rust project. 28 29Licensed under the Apache License, Version 2.0 30https://www.apache.org/licenses/LICENSE-2.0 or the MIT license 31https://opensource.org/licenses/MIT, at your 32option. This file may not be copied, modified, or distributed 33except according to those terms. 34