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

Method lt

datafusion/expr/src/expr.rs:1712–1714  ·  view source on GitHub ↗

Return `self < other`

(self, other: Expr)

Source from the content-addressed store, hash-verified

1710
1711 /// Return `self < other`
1712 pub fn lt(self, other: Expr) -> Expr {
1713 binary_expr(self, Operator::Lt, other)
1714 }
1715
1716 /// Return `self <= other`
1717 pub fn lt_eq(self, other: Expr) -> Expr {

Calls 1

binary_exprFunction · 0.70