Skip to content

Latest commit

 

History

6 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Chaining Iterator

This is a simple runtime iterator chain. All iterators in the chain must be of the same type. It can also be used to chain boxed iterator objects if you want to chain iterators of different types.

Design

The underling data structure is a VecDeque that stores each iterator until they are exhausted. This allows polling from the front and pushing to the back, as well as polling from the back and pushing to the front if the underling iterators implement DoubleEndedIterator.

About

Allows chaining iterators of the same type at runtime in Rust.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages