Itertools — extra iterator adaptors, functions and macros.
To use the iterator methods in this crate, import the Itertools trait:
use Itertools;
Crate Features
use_std- Enabled by default.
- Disable to compile itertools using
#![no_std]. This disables any items that depend on collections (likegroup_by,unique,kmerge,joinand many more).
Rust Version
This version of itertools requires Rust 1.12 or later.