Expand description

This crate uses generic associated types to supply an iterator trait that allows the items to [mutably] borrow from the iterator. See the GAT anouncement

Most Iterator methods can work as is on LendingIterators, but some wouldn’t make sense. Basically any method that needs to look at more than one element at once isn’t possible, or needs to be modified.

Some LendingIterator methods may return something that can act as an Iterator. For example cloned, or map, when the function passed to it returns a value that isn’t tied to the lifetime of its input. In these cases, my design choice was to conditionally implement IntoIterator for the adapter.

This crate also provides an extension trait ToLendingIterator: Iterator for iterators that allows turning them into lending iterators (over windows of elements). There may be more methods added to this trait in the future.

Examples

Using windows on a range, filtering it and chaining it:

use gat_lending_iterator::{LendingIterator, ToLendingIterator};

(0..5)
    .windows(3)
    .filter(|x| x[0] % 2 == 0)
    .chain((0..6).windows(2))
    .for_each(|x| println!("{x:?}"));

Prints:

[0, 1, 2]
[2, 3, 4]
[0, 1]
[1, 2]
[2, 3]
[3, 4]
[4, 5]

Using windows_mut on a range, mutating it and mapping it:

use gat_lending_iterator::{LendingIterator, ToLendingIterator};

for sum in (0..7).windows_mut(2).map(|slice: &mut [usize]| {
    slice[1] += slice[0];
    slice[1]
}) {
    println!("{sum}");
}

Prints:

1
3
6
10
15
21

Using windows on a range, and mapping it:

use gat_lending_iterator::{LendingIterator, ToLendingIterator};
fn second(slice: &[usize]) -> &usize {
    &slice[1]
}

for n in (0..5).windows(3).map(second).cloned() {
    println!("{n}");
}

Prints:

1
2
3

Structs

  • A lending iterator that iterates over the elements of two iterators in sequence.
  • A lending iterator that clones the elements of an underlying lending iterator.
  • A lending iterator that yields the current count and the element during iteration.
  • A lending iterator that filters the elements of iter with predicate.
  • A lending iterator that uses f to both filter and map elements from iter.
  • An iterator that maps the elements of iter with f.
  • A lending iterator that iterates over an iterator.
  • A lending iterator that given an iterator, lends references to the given iterator’s items.
  • A lending iterator that given an iterator, lends mutable references to the given iterator’s items.
  • A lending iterator that maps the elements of iter with f.
  • A lending iterator that skips over the first n items of iter.
  • A lending iterator for stepping lending iterators by a custom amount.
  • A Lending iterator that only lends the first n iterations of iter.
  • A lending iterator that yields items based on a predicate.
  • A lending iterator over windows.
  • A lending iterator over mutable windows.
  • A lending iterator that iterates two other lending iterators simultaneously.

Traits