• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/common/pool.php
  • Класс: BitrixLocationCommonPool
  • Вызов: Pool::addItem
public function addItem(string $index, $value): void
{
	$this->items[$index] = $value;
	$delta = count($this->items) - $this->poolSize;

	if($delta > 0)
	{
		$this->items = $this->decreaseSize($delta, $this->items);
	}
}