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

Method between

datafusion/expr/src/expr.rs:1986–1993  ·  view source on GitHub ↗

return `self BETWEEN low AND high`

(self, low: Expr, high: Expr)

Source from the content-addressed store, hash-verified

1984
1985 /// return `self BETWEEN low AND high`
1986 pub fn between(self, low: Expr, high: Expr) -> Expr {
1987 Expr::Between(Between::new(
1988 Box::new(self),
1989 false,
1990 Box::new(low),
1991 Box::new(high),
1992 ))
1993 }
1994
1995 /// Return `self NOT BETWEEN low AND high`
1996 pub fn not_between(self, low: Expr, high: Expr) -> Expr {

Calls 2

BetweenClass · 0.85
newFunction · 0.85