From 0d941513f9b01a46556a4a1575417ace3e00b2be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timotej=20Fa=C5=A1iang?= <60715817+TimotejFasiang@users.noreply.github.com> Date: Thu, 6 Jun 2024 23:47:07 +0200 Subject: [PATCH] Update operation table for 0.2.34 Add <= and >= operators to the operation table in native-numbers.md to reflect the changes made in 0.2.34 --- docs/native-numbers.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/native-numbers.md b/docs/native-numbers.md index 42491d47..db6233b6 100644 --- a/docs/native-numbers.md +++ b/docs/native-numbers.md @@ -85,7 +85,9 @@ Operation | Description | Accepted types | Return type \== | Equality | U24, I24, F24 | U24 \!= | Inequality | U24, I24, F24 | U24 \< | Less than | U24, I24, F24 | U24 +\<= | Less than or equal to | U24, I24, F24 | U24 \> | Greater than | U24, I24, F24 | U24 +\>= | Greater than or equal to | U24, I24, F24 | U24 \& | Bitwise and | U24, I24 | Same as arguments \| | Bitwise or | U24, I24 | Same as arguments \^ | Bitwise xor | U24, I24 | Same as arguments