Collections\Dictionary::without PHP Method

without() public method

public without ( callable $condition )
$condition callable
    public function without(callable $condition)
    {
        $inverse = function ($k, $v) use($condition) {
            return !$condition($k, $v);
        };
        return $this->filter($inverse);
    }