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

Method not_between

datafusion/expr/src/expr.rs:1996–2003  ·  view source on GitHub ↗

Return `self NOT BETWEEN low AND high`

(self, low: Expr, high: Expr)

Source from the content-addressed store, hash-verified

1994
1995 /// Return `self NOT BETWEEN low AND high`
1996 pub fn not_between(self, low: Expr, high: Expr) -> Expr {
1997 Expr::Between(Between::new(
1998 Box::new(self),
1999 true,
2000 Box::new(low),
2001 Box::new(high),
2002 ))
2003 }
2004 /// Return a reference to the inner `Column` if any
2005 ///
2006 /// returns `None` if the expression is not a `Column`

Calls 2

BetweenClass · 0.85
newFunction · 0.85