You are here

public function AbstractLazyCollection::partition in Plug 7

Partitions this collection in two collections according to a predicate. Keys are preserved in the resulting collections.

Parameters

Closure $p The predicate on which to partition.:

Return value

array An array with two elements. The first element contains the collection of elements where the predicate returned TRUE, the second element contains the collection of elements where the predicate returned FALSE.

Overrides Collection::partition

File

lib/doctrine/collections/lib/Doctrine/Common/Collections/AbstractLazyCollection.php, line 245

Class

AbstractLazyCollection
Lazy collection that is backed by a concrete collection

Namespace

Doctrine\Common\Collections

Code

public function partition(Closure $p) {
  $this
    ->initialize();
  return $this->collection
    ->partition($p);
}