From ac7d2a187bff55ddda5e22e1cbda1090ff8d0a1f Mon Sep 17 00:00:00 2001 From: Cody Date: Sat, 8 Apr 2023 14:46:57 -0500 Subject: Progress --- documentation/order.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 documentation/order.txt (limited to 'documentation/order.txt') diff --git a/documentation/order.txt b/documentation/order.txt new file mode 100644 index 0000000..8727306 --- /dev/null +++ b/documentation/order.txt @@ -0,0 +1,18 @@ +| Name | Operators | Associates | +| -------------- | --------- | ---------- | +| parentheses | () | Left | +| member access | . ! !! ?. | Left | +| defaulting | ?: | Right | +| function call | () | Left | +| unary | ! - ~ | Right | +| multiplicative | * / % | Left | +| additive | + - | Left | +| bitwise shift | << >> | Left | +| comparison | < > <= >= | Left | +| equality | == != | Left | +| bitwise and | & | Left | +| bitwise xor | ^ | Left | +| bitwise or | | | Left | +| logical and | && | Left | +| logical or | || | Left | + -- cgit v1.2.3