• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

benches/25-Apr-2025-2,2431,988

examples/25-Apr-2025-292244

src/25-Apr-2025-13,7978,168

tests/25-Apr-2025-5,1944,403

.cargo-checksum.jsonD25-Apr-20256.9 KiB11

Android.bpD25-Apr-2025959 3834

CHANGELOG.mdD25-Apr-202526.5 KiB540502

CONTRIBUTING.mdD25-Apr-20258.6 KiB190139

Cargo.lockD25-Apr-202519.1 KiB741654

Cargo.tomlD25-Apr-20251.9 KiB10686

LICENSED25-Apr-202510.6 KiB202169

LICENSE-APACHED25-Apr-202510.6 KiB202169

LICENSE-MITD25-Apr-20251 KiB2622

METADATAD25-Apr-2025416 1817

MODULE_LICENSE_APACHE2D25-Apr-20250

README.mdD25-Apr-2025907 3422

TEST_MAPPINGD25-Apr-2025487 2322

cargo_embargo.jsonD25-Apr-202552 54

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