Registry / utility / iter-tools

iter-tools

JSON →
library0.50.0rscratesunverified

A collection of general purpose iterator tools, currently re-exporting itertools.

# Cargo.toml [dependencies] iter_tools = "0.50.0"
INSTALL
IMPORT
SIG · ITER-TOOLS
I
iter-tools
utilityrustv0.50.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Itertools
use itertools::Itertools;

Demonstrates basic usage of the Itertools trait to map over an iterator.

use itertools::Itertools; fn main() { let data = vec![1, 2, 3, 4, 5]; let result: Vec<_> = data.iter().map(|x| x * 2).collect(); println!("{:?}", result); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.50.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
iter-tools — cargo add iter-tools · libregistry