public function Collection::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.
2 methods override Collection::partition()
- AbstractLazyCollection::partition in lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ AbstractLazyCollection.php - Partitions this collection in two collections according to a predicate. Keys are preserved in the resulting collections.
- ArrayCollection::partition in lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ArrayCollection.php - Partitions this collection in two collections according to a predicate. Keys are preserved in the resulting collections.
File
- lib/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ Collection.php, line 237
Class
- Collection
- The missing (SPL) Collection/Array/OrderedMap interface.
Namespace
Doctrine\Common\CollectionsCode
public function partition(Closure $p);