• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/v2/BaseCollection.php
  • Класс: BitrixCatalogv2BaseCollection
  • Вызов: BaseCollection::getIterator
public function getIterator(): Traversable
{
	$this->loadItems();

	// workaround - spread operator (...) doesn't work with associative arrays
	return new ArrayIterator(array_values($this->items));
}