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

..03-May-2022-

.github/workflows/H03-May-2022-4135

benches/H03-May-2022-1,8281,541

examples/H03-May-2022-289239

src/H03-May-2022-11,2446,499

tests/H03-May-2022-3,7583,138

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D29-Nov-197319 32

.rustfmt.tomlH A D29-Nov-1973115 43

CHANGELOG.mdH A D29-Nov-197319.8 KiB374357

Cargo.lockH A D01-Jan-197018 KiB727646

Cargo.tomlH A D01-Jan-19701.8 KiB8973

Cargo.toml.orig-cargoH A D29-Nov-19731.4 KiB8059

LICENSE-APACHEH A D29-Nov-197310.6 KiB202169

LICENSE-MITH A D29-Nov-19731 KiB2622

README.mdH A D29-Nov-19731.5 KiB4531

README.md

1# Itertools
2
3Extra iterator adaptors, functions and macros.
4
5Please read the [API documentation here](https://docs.rs/itertools/).
6
7[![build_status](https://github.com/rust-itertools/itertools/actions/workflows/ci.yml/badge.svg)](https://github.com/rust-itertools/itertools/actions)
8[![crates.io](https://img.shields.io/crates/v/itertools.svg)](https://crates.io/crates/itertools)
9
10How to use with Cargo:
11
12```toml
13[dependencies]
14itertools = "0.10.2"
15```
16
17How to use in your crate:
18
19```rust
20use itertools::Itertools;
21```
22
23## How to contribute
24
25- Fix a bug or implement a new thing
26- Include tests for your new feature, preferably a QuickCheck test
27- Make a Pull Request
28
29For new features, please first consider filing a PR to [rust-lang/rust](https://github.com/rust-lang/rust),
30adding your new feature to the `Iterator` trait of the standard library, if you believe it is reasonable.
31If it isn't accepted there, proposing it for inclusion in ``itertools`` is a good idea.
32The reason for doing is this is so that we avoid future breakage as with ``.flatten()``.
33However, if your feature involves heap allocation, such as storing elements in a ``Vec<T>``,
34then it can't be accepted into ``libcore``, and you should propose it for ``itertools`` directly instead.
35
36## License
37
38Dual-licensed to be compatible with the Rust project.
39
40Licensed under the Apache License, Version 2.0
41https://www.apache.org/licenses/LICENSE-2.0 or the MIT license
42https://opensource.org/licenses/MIT, at your
43option. This file may not be copied, modified, or distributed
44except according to those terms.
45