Scripting Operators » History » Version 11
Per Amundsen, 10/22/2015 03:43 PM
| 1 | 1 | Per Amundsen | h1. Scripting Operators |
|---|---|---|---|
| 2 | |||
| 3 | <pre> |
||
| 4 | > |
||
| 5 | < |
||
| 6 | <= |
||
| 7 | >= |
||
| 8 | = |
||
| 9 | 5 | Per Amundsen | == |
| 10 | 1 | Per Amundsen | === |
| 11 | // |
||
| 12 | 2 | Per Amundsen | \\ |
| 13 | 1 | Per Amundsen | & |
| 14 | ismatch |
||
| 15 | isin |
||
| 16 | isincs |
||
| 17 | ison |
||
| 18 | isop |
||
| 19 | ishop |
||
| 20 | issop |
||
| 21 | isowner |
||
| 22 | isvoice |
||
| 23 | isnum |
||
| 24 | ischan |
||
| 25 | isreg |
||
| 26 | iswm |
||
| 27 | iswmcs |
||
| 28 | isletter |
||
| 29 | isalpha |
||
| 30 | isalnum |
||
| 31 | islower |
||
| 32 | isupper |
||
| 33 | isban |
||
| 34 | isinvite |
||
| 35 | isexcept |
||
| 36 | isignore |
||
| 37 | 9 | Per Amundsen | isurl |
| 38 | 3 | Per Amundsen | !> |
| 39 | !< |
||
| 40 | 1 | Per Amundsen | !<= |
| 41 | !>= |
||
| 42 | 5 | Per Amundsen | != |
| 43 | 1 | Per Amundsen | !== |
| 44 | !=== |
||
| 45 | 4 | Per Amundsen | !// |
| 46 | !\\ |
||
| 47 | !& |
||
| 48 | 3 | Per Amundsen | !ismatch |
| 49 | !isin |
||
| 50 | !isincs |
||
| 51 | !ison |
||
| 52 | !isop |
||
| 53 | !ishop |
||
| 54 | !issop |
||
| 55 | !isowner |
||
| 56 | !isvoice |
||
| 57 | !isnum |
||
| 58 | !ischan |
||
| 59 | !isreg |
||
| 60 | !iswm |
||
| 61 | !iswmcs |
||
| 62 | !isletter |
||
| 63 | !isalpha |
||
| 64 | !isalnum |
||
| 65 | !islower |
||
| 66 | !isupper |
||
| 67 | !isban |
||
| 68 | !isinvite |
||
| 69 | !isexcept |
||
| 70 | !isignore |
||
| 71 | 9 | Per Amundsen | !isurl |
| 72 | 1 | Per Amundsen | </pre> |
| 73 | 10 | Per Amundsen | |
| 74 | *Math Comparison Operators* |
||
| 75 | |||
| 76 | |_.Syntax |_.Name |_<.Result | |
||
| 77 | 11 | Per Amundsen | |=. <notextile>%x == %y</notextile> |
| 78 | 10 | Per Amundsen | %x = %y |
| 79 | %x != %y |
||
| 80 | %x < %y |
||
| 81 | %x > %y |
||
| 82 | %x <= %y |
||
| 83 | %x >= %y |
||
| 84 | %x // %y |
||
| 85 | %x \\ %y |
||
| 86 | %x & %y |
||
| 87 | |=. Equal |
||
| 88 | Equal |
||
| 89 | Not equal |
||
| 90 | Less than |
||
| 91 | Greater than |
||
| 92 | Less than or equal to |
||
| 93 | Greater than or equal to |
||
| 94 | Multiple Of (Divides) |
||
| 95 | Not Multiple Of (Not Divides) |
||
| 96 | Bitwise And |
||
| 97 | |^. True, if %x is equal to %y. |
||
| 98 | True, if %x is equal to %y. |
||
| 99 | True, if %x is not equal to %y. |
||
| 100 | True, if %x is strictly less than %y. |
||
| 101 | True, if %x is strictly greater than %y. |
||
| 102 | True, if %x is less than or equal to %y. |
||
| 103 | True, if %x is greater than or equal to %y. |
||
| 104 | True, if %x divides %y. |
||
| 105 | True, if %x does not divides %y. |
||
| 106 | True, if (bit representation of) %x AND %y is a none zero. |