This is the second question I’ve got here; in short, trying to transfer a code segment from C++ to LibreOffice Basic, and some functions and features seem to be not implemented.
For this particular question: while there are bitwise shift functions for Calc (BITLSHIFT, BITRSHIFT), there’s no such function or operand in LO Basic.
Obviously, what I mean are the C/C++ operators << and >> as in:
a = b << c; //left shift
d = e >> f; //right shift
Could someone please let me know if I’ve overlooked something, or if it’s indeed missing? Also, since I’m rather new here, is there any place I can file a “bug” report so that it’s considered for future implementation?
Thanks!