Skip to main content

bitwiseNOT

Computes bitwise not. Supports Spark Connect.

warning

Deprecated in 3.2.0. Use bitwise_not instead.

Syntax

Python
from pyspark.databricks.sql import functions as dbf

dbf.bitwiseNOT(col=<col>)

Parameters

Parameter

Type

Description

col

pyspark.sql.Column or column name

Target column to compute on.

Examples

See bitwise_not for examples.