Pinq\ICollection::removeWhere PHP Method

removeWhere() public method

Removes all the values matched by the predicate.
public removeWhere ( callable $predicate ) : void
$predicate callable
return void
    public function removeWhere(callable $predicate);

Usage Example

Esempio n. 1
0
 /**
  * @dataProvider everything
  */
 public function testThatRemoveWhereFalseRemovesNoItems(\Pinq\ICollection $collection, array $data)
 {
     $collection->removeWhere(function () {
         return false;
     });
     $this->assertMatchesValues($collection, $data);
 }
All Usage Examples Of Pinq\ICollection::removeWhere