Doctrine\MongoDB\Query\Builder::bitsAnyClear PHP Method

bitsAnyClear() public method

Matches documents where any of the bit positions given by the query are clear.
See also: Expr::bitsAnyClear()
See also: https://docs.mongodb.org/manual/reference/operator/query/bitsAnyClear/
public bitsAnyClear ( integer | array | MongoBinData $value )
$value integer | array | MongoBinData
    public function bitsAnyClear($value)
    {
        $this->expr->bitsAnyClear($value);
        return $this;
    }