Expand description
Implementations of concurrent iterators.
Modules§
- jagged_
arrays - Generic implementations of jagged arrays or slice of slices, etc.
Structs§
- ConIter
Empty - An empty concurrent iterator which does not yield any elements.
- ConIter
OfIter - Concurrent iterator of a any generic type implementing a
regular
Iterator
. - ConIter
Range - Concurrent iterator of a
Range
. - ConIter
Slice - Concurrent iterator of a slice.
- ConIter
Vec - Concurrent iterator of a
Vec
. - ConIter
VecDeque Ref - Concurrent iterator of a reference to a
VecDeque
.