LMongo\Query\Builder::norWhereSize PHP Method

norWhereSize() public method

Add an "$size array operation" clause to logical $nor operation.
public norWhereSize ( string $column, integer $value ) : LMongo\Query\Builder
$column string
$value integer
return LMongo\Query\Builder
    public function norWhereSize($column, $value)
    {
        return $this->where($column, array('$size' => $value), '$nor');
    }
Builder