MCPcopy Create free account
hub / github.com/apache/datafusion / not_eq

Method not_eq

datafusion/expr/src/expr.rs:1697–1699  ·  view source on GitHub ↗

Return `self != other`

(self, other: Expr)

Source from the content-addressed store, hash-verified

1695
1696 /// Return `self != other`
1697 pub fn not_eq(self, other: Expr) -> Expr {
1698 binary_expr(self, Operator::NotEq, other)
1699 }
1700
1701 /// Return `self > other`
1702 pub fn gt(self, other: Expr) -> Expr {

Calls 1

binary_exprFunction · 0.70