Skip to main content
Version: 1.2.0

Logic

Expr.and_Bitwise and operator with the given expressions.
Expr.eqCompare if 2 expressions are equal, equivalent to expr == other.
Expr.eq_missingCompare if 2 expressions are equal an, equivalent to expr == other.
Expr.geGreater or equal operator.
Expr.gtGreater than operator.
Expr.is_betweenIf an expression is between the given bounds.
Expr.is_finiteIf an element value is finite.
Expr.is_inIf an element value is in the given collection.
Expr.is_infiniteIf an element value is infinite.
Expr.is_nanIf an element value is NaN.
Expr.is_not_nanIf an element value is not NaN.
Expr.is_not_nullIf an element value is not null (None).
Expr.is_nullIf an element value is null (None).
Expr.is_uniqueIf an element value is unique for all values in the column.
Expr.leLess or equal operator.
Expr.ltLess than operator.
Expr.neCompare if 2 expressions are not equal, equivalent to expr != other.
Expr.ne_missingCompare if 2 expressions are not equal an, equivalent to expr != other.
Expr.not_Negate a boolean expression.
Expr.or_Bitwise or operator with the given expressions.
Expr.xorBitwise xor operator with the given expression.