mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-10 21:58:48 +01:00
Tentative fix for Num class docs issue on the wren.io site. (#932)
This commit is contained in:
@ -251,13 +251,13 @@ Performs bitwise exclusive or on the number. Both numbers are first converted to
|
||||
|
||||
It is a runtime error if `other` is not a number.
|
||||
|
||||
### **<<**(other) operator
|
||||
### **<<**(other) operator
|
||||
|
||||
Performs a bitwise left shift on the number. Internally, both numbers are first converted to 32-bit unsigned values and C's left shift operator is then applied to them.
|
||||
|
||||
It is a runtime error if `other` is not a number.
|
||||
|
||||
### **>>**(other) operator
|
||||
### **>>**(other) operator
|
||||
|
||||
Performs a bitwise right shift on the number. Internally, both numbers are first converted to 32-bit unsigned values and C's right shift operator is then applied to them.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user