forked from extern/nushell
Add not-in: operator (#1661)
This commit is contained in:
@ -247,6 +247,8 @@ fn parse_operator(lite_arg: &Spanned<String>) -> (SpannedExpression, Option<Pars
|
||||
Operator::Divide
|
||||
} else if lite_arg.item == "in:" {
|
||||
Operator::In
|
||||
} else if lite_arg.item == "not-in:" {
|
||||
Operator::NotIn
|
||||
} else if lite_arg.item == "&&" {
|
||||
Operator::And
|
||||
} else if lite_arg.item == "||" {
|
||||
|
Reference in New Issue
Block a user