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
This commit is contained in:
Timotej Fašiang 2024-06-06 23:47:07 +02:00 committed by GitHub
parent d5847178df
commit 0d941513f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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