Expand description
§iter-scan
Iterator scan methods that don’t suck.
§Motives
The Iterator::scan
method that the Rust standard library provides are overcomplicated and inelegant. This crate aims to rectify this.
§Usage
The usage of this crate is included in the documentation.
§no_std
To use this crate with no_std
, simply disable the std
feature.
[dependencies.iter-scan]
version = "..."
default-features = false
features = []
§License
Structs§
- Scan
Clone - An iterator created by
scan_clone
. - Scan
Copy - An iterator created by
scan_copy
. - Scan
State Clone - An iterator created by
scan_state_clone
. - Scan
State Copy - An iterator created by
scan_state_copy
. - Scan
With Tuple - An iterator created by
scan_with_tuple
.
Traits§
- Iter
Scan - Iterator scan methods that don’t suck.