Az Iterator minta lehetővé teszi a kollekció szekvenciális bejárását annak belső szerkezetének felfedése nélkül. Ez olyan alapvető minta, hogy szinte minden modern nyelvbe beépítik (for-of ciklusok, iterátorok, generátorok).
Mit csinál az Iterator minta
ITERATOR → access elements of a collection SEQUENTIALLY without exposing its internals:
→ provides a standard way to traverse (next element, has more?)
→ the collection's internal structure (array, tree, linked list) is HIDDEN
→ decouples traversal logic from the collection
→ "iterate without caring how the collection is structured"
