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

コード例 #1
0
ファイル: RemoveWhereTest.php プロジェクト: timetoogo/pinq
 /**
  * @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