HH\Iterator

For those entities that are Traversable, the Iterator interfaces provides the methods of iteration

If a class implements Iterator, then it provides the infrastructure to be iterated over using a foreach loop.

Guides

Interface Synopsis

namespace HH;

interface Iterator implements Traversable<Tv> {...}

Public Methods