OLD | NEW |
(Empty) | |
| 1 ! -eq -ne -gt -ge -lt -le -shl -shr -not -band -and -bxor -bor -or |
| 2 -Like -Match -Contains -In -NotLike -NotMatch -NotContains -NotIn -Replace -Join |
| 3 -is -isNot -as |
| 4 -= += *= /= %= - + * / % -- ++ |
| 5 |
| 6 ---------------------------------------------------- |
| 7 |
| 8 [ |
| 9 ["operator", "!"], |
| 10 ["operator", "-eq"], |
| 11 ["operator", "-ne"], |
| 12 ["operator", "-gt"], |
| 13 ["operator", "-ge"], |
| 14 ["operator", "-lt"], |
| 15 ["operator", "-le"], |
| 16 ["operator", "-shl"], |
| 17 ["operator", "-shr"], |
| 18 ["operator", "-not"], |
| 19 ["operator", "-band"], |
| 20 ["operator", "-and"], |
| 21 ["operator", "-bxor"], |
| 22 ["operator", "-bor"], |
| 23 ["operator", "-or"], |
| 24 |
| 25 ["operator", "-Like"], |
| 26 ["operator", "-Match"], |
| 27 ["operator", "-Contains"], |
| 28 ["operator", "-In"], |
| 29 ["operator", "-NotLike"], |
| 30 ["operator", "-NotMatch"], |
| 31 ["operator", "-NotContains"], |
| 32 ["operator", "-NotIn"], |
| 33 ["operator", "-Replace"], |
| 34 ["operator", "-Join"], |
| 35 ["operator", "-is"], |
| 36 ["operator", "-isNot"], |
| 37 ["operator", "-as"], |
| 38 |
| 39 ["operator", "-="], |
| 40 ["operator", "+="], |
| 41 ["operator", "*="], |
| 42 ["operator", "/="], |
| 43 ["operator", "%="], |
| 44 ["operator", "-"], |
| 45 ["operator", "+"], |
| 46 ["operator", "*"], |
| 47 ["operator", "/"], |
| 48 ["operator", "%"], |
| 49 ["operator", "--"], |
| 50 ["operator", "++"] |
| 51 |
| 52 ] |
| 53 ---------------------------------------------------- |
| 54 |
| 55 Testing operators. |
OLD | NEW |