Open PantalaLabs opened 1 year ago
In case this helps, I've added support for these operators to the C++ version at:
Thank you a lot !
I also just added the functions BITLSHIFT()
and BITRSHIFT()
, which work like their counterparts in Excel. Note that if you pass a negative shift amount to BITLSHIFT()
, then it calls BITRSHIFT()
and vice-versa. A strange design, but that's what Excel does.
The << and >> operators have a very low operator precedence, but I emulate what C compilers do. I recommend wrapping those expressions in parentheses (as does the MSVC compiler).
Great ! Thank you!!
Thank you for your work! Great lib.
operations