Iterators Glossary
- iterable (Can be iterated over using a for loop.)
- iterator
- Every iterator is also iterable
- Iterators (and iterables) are not necessarily addressable like lists with the thing[index] construct.
- Iterator Types
- The standard type hierarchy