• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/entity/identificator/complexcollection.php
  • Класс: Bitrix\Crm\Entity\Identificator\ComplexCollection
  • Вызов: ComplexCollection::diff
public function diff(ComplexCollection $collection)
{
	$result = new static();
	foreach($this->toArray() as $complex)
	{
		if ($collection->hasComplex($complex))
		{
			continue;
		}

		$result->setComplex(clone $complex);
	}

	return $result;
}