HH\Iterable

Represents any entity that can be iterated over using something like foreach

The entity does not necessarily have to have a key, just values.

Iterable does not include arrays.

Guides

Interface Synopsis

namespace HH;

interface Iterable implements Traversable<Tv>, \IteratorAggregate<Tv> {...}

Public Methods