Files
wren/src
Marco Lizza 8c8a059dda feat: add bitwise XOR, left-shift, and right-shift primitives for numbers
Implement three new native methods on the Num class: `^` (bitwise XOR), `<<` (left shift), and `>>` (right shift). Each operates on 32-bit unsigned integers, matching the existing bitwise AND/OR convention. The new primitives are registered in `wrenInitializeCore` alongside the existing bitwise operators.
2015-02-16 10:29:14 +00:00
..