mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 05:04:40 +02:00
Rename bitwise operators for readability (#5937)
This commit is contained in:
@ -4106,10 +4106,10 @@ pub fn parse_operator(
|
||||
b"in" => Operator::In,
|
||||
b"not-in" => Operator::NotIn,
|
||||
b"mod" => Operator::Modulo,
|
||||
b"bor" => Operator::BitOr,
|
||||
b"band" => Operator::BitAnd,
|
||||
b"bshl" => Operator::ShiftLeft,
|
||||
b"bshr" => Operator::ShiftRight,
|
||||
b"bit-or" => Operator::BitOr,
|
||||
b"bit-and" => Operator::BitAnd,
|
||||
b"bit-shl" => Operator::ShiftLeft,
|
||||
b"bit-shr" => Operator::ShiftRight,
|
||||
b"starts-with" => Operator::StartsWith,
|
||||
b"ends-with" => Operator::EndsWith,
|
||||
b"&&" | b"and" => Operator::And,
|
||||
|
Reference in New Issue
Block a user