You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
Thank you for your work! Great lib.
operations
The text was updated successfully, but these errors were encountered: