Pinq\Collection::removeWhere PHP Method

removeWhere() public method

public removeWhere ( callable $predicate )
$predicate callable
    public function removeWhere(callable $predicate)
    {
        $elementsToRemove = $this->scheme->createOrderedMap($this->scheme->filterIterator($this->elements, $predicate));
        $this->removeRange($elementsToRemove);
    }