For Loop Iterators
Allows you to create Rust iterators that act like traditional for loops!
Iterators will produce values just like for loops do
Examples
// A for loop in Java
for
// A Rust Iterator that performs the same function
new
.for_each;