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

Method in_list

datafusion/expr/src/expr.rs:1931–1933  ·  view source on GitHub ↗

Return `self IN ` if `negated` is false, otherwise return `self NOT IN `.a

(self, list: Vec<Expr>, negated: bool)

Source from the content-addressed store, hash-verified

1929 /// Return `self IN <list>` if `negated` is false, otherwise
1930 /// return `self NOT IN <list>`.a
1931 pub fn in_list(self, list: Vec<Expr>, negated: bool) -> Expr {
1932 Expr::InList(InList::new(Box::new(self), list, negated))
1933 }
1934
1935 /// Return `IsNull(Box(self))
1936 pub fn is_null(self) -> Expr {

Calls 2

InListClass · 0.85
newFunction · 0.85