• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/binding/map.php
  • Класс: BitrixIntranetBindingMap
  • Вызов: Map::merge
public function merge(self $anotherMap): self
{
	$mergeResult = new static();

	static::mergeInOneDirection($mergeResult, $this->getSections(), $anotherMap);

	static::mergeInOneDirection($mergeResult, $anotherMap->getSections(), $this);

	return $mergeResult;
}