Return `self IN ` if `negated` is false, otherwise return `self NOT IN `.a
(self, list: Vec<Expr>, negated: bool)
| 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 { |