public function ArrayCollection::getIterator

Gets an iterator for iterating over the elements in the collection.

Return value

ArrayIterator

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Collections/ArrayCollection.php, line 360

Class

ArrayCollection
An ArrayCollection is a Collection implementation that wraps a regular PHP array.

Namespace

Doctrine\Common\Collections

Code

public function getIterator() {
  return new ArrayIterator($this->_elements);
}