Iterators adaptors with associated read-only data.
Useful for naming the types of wrapped iterators by using function pointers or non-capturing closures.
```rust use context_iterators::*;
type Closure = fn(usize, &usize) -> usize;
type MappedIterator = MapCtx
let iter: MappedIterator = (0..10) .withcontext(42) .mapwith_context(|item: usize, context: &usize| item + *context); ```
The MappedIterator
type can be used in contexts where a concrete type is
needed, for example as an associated type for a trait.
```rust
trait Iterable {
type Iter: Iterator
struct MyIterable;
impl Iterable for MyIterable { type Iter = MappedIterator; } ```
Please read the API documentation here.
See CHANGELOG for a list of changes. The minimum supported rust version will only change on major releases.
This project is dual-licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 or the MIT license http://opensource.org/licenses/MIT, at your option. This file may not be copied, modified, or distributed except according to those terms.