doc: document some additional operators in Person.im

This commit is contained in:
2024-11-27 22:26:59 +00:00
parent a5c0606221
commit 5af2692555

View File

@@ -409,6 +409,9 @@ cout put:'Hello, world!' unless x <= 10.
precedence. in these cases, their associativity determines the order of precedence. in these cases, their associativity determines the order of
execution. execution.
- binary operators
- package-access (->)
- self-access (::)
- unary operators - unary operators
- boolean NOT (not) - boolean NOT (not)
- bitwise NOT (~) - bitwise NOT (~)
@@ -423,6 +426,7 @@ cout put:'Hello, world!' unless x <= 10.
- addition (+) - addition (+)
- subtraction (-) - subtraction (-)
- bitwise shift (<<, >>) - bitwise shift (<<, >>)
- comparison (<, >, <=, >=)
- (in)equality (==, !=) - (in)equality (==, !=)
- bitwise AND (&) - bitwise AND (&)
- bitwise XOR (^) - bitwise XOR (^)