public function ArrayCollection::removeElement

Removes the specified element from the collection, if it is found.

Parameters

mixed $element The element to remove.:

Return value

boolean TRUE if this collection contained the specified element, FALSE otherwise.

Overrides Collection::removeElement

File

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

Class

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

Namespace

Doctrine\Common\Collections

Code

public function removeElement($element) {
  $key = array_search($element, $this->_elements, true);
  if ($key !== false) {
    unset($this->_elements[$key]);
    return true;
  }
  return false;
}