229 | | || "`.`" || 5 || Left‐to‐right || Member (see above) || |
230 | | || "`[]`" || 5 || Left‐to‐right || Member or subblob (see above) || |
231 | | || "`*`" || 4 || Left‐to‐right || Integer multiplication || |
232 | | || "`//`" || 4 || Left‐to‐right || [https://en.wikipedia.org/wiki/Modulo_operation Floored/euclidean] integer division; divisor must be positive || |
233 | | || "`%`" || 4 || Left‐to‐right || [https://en.wikipedia.org/wiki/Modulo_operation Floored/euclidean] modulo operation; divisor must be positive || |
234 | | || "`+`" || 3 || Left‐to‐right || Integer addition || |
235 | | || "`-`" || 3 || Left‐to‐right || Integer subtraction || |
236 | | || "`++`" || 3 || Left‐to‐right || Blob concatenation || |
237 | | || "`<`" || 2 || Left‐to‐right || Integer less‐than || |
238 | | || "`<=`" || 2 || Left‐to‐right || Integer less‐than‐or‐equal || |
239 | | || "`>`" || 2 || Left‐to‐right || Integer greater‐than || |
240 | | || "`>=`" || 2 || Left‐to‐right || Integer greater‐than‐or‐equal || |
241 | | || "`==`" || 1 || Left‐to‐right || Equal‐to (not supported for internal nodes) || |
242 | | || "`!=`" || 1 || Left‐to‐right || Unequal‐to (not supported for internal nodes) || |
243 | | || "`&&`" || 0 || Left‐to‐right || Logical or || |
244 | | || "`||`" || 0 || Left‐to‐right || Logical and || |
| 229 | ||"`.`" || 5 || Left‐to‐right || Member (see above) || |
| 230 | ||"`[]`" || 5 || Left‐to‐right || Member or subblob (see above) || |
| 231 | ||"`*`" || 4 || Left‐to‐right || Integer multiplication || |
| 232 | ||"`//`" || 4 || Left‐to‐right || [https://en.wikipedia.org/wiki/Modulo_operation Floored/euclidean] integer division; divisor must be positive || |
| 233 | ||"`%`" || 4 || Left‐to‐right || [https://en.wikipedia.org/wiki/Modulo_operation Floored/euclidean] modulo operation; divisor must be positive || |
| 234 | ||"`+`" || 3 || Left‐to‐right || Integer addition || |
| 235 | ||"`-`" || 3 || Left‐to‐right || Integer subtraction || |
| 236 | ||"`++`" || 3 || Left‐to‐right || Blob concatenation || |
| 237 | ||"`<`" || 2 || Left‐to‐right || Integer less‐than || |
| 238 | ||"`<=`" || 2 || Left‐to‐right || Integer less‐than‐or‐equal || |
| 239 | ||"`>`" || 2 || Left‐to‐right || Integer greater‐than || |
| 240 | ||"`>=`" || 2 || Left‐to‐right || Integer greater‐than‐or‐equal || |
| 241 | ||"`==`" || 1 || Left‐to‐right || Equal‐to (not supported for internal nodes) || |
| 242 | ||"`!=`" || 1 || Left‐to‐right || Unequal‐to (not supported for internal nodes) || |
| 243 | ||"`&&`" || 0 || Left‐to‐right || Logical and || |
| 244 | ||"`||`" || 0 || Left‐to‐right || Logical or || |