Bitwise Operations - MapInfo_Pro_Advanced - 2023

MapInfo Pro Advanced Help

Product type
Software
Portfolio
Locate
Product family
MapInfo
Product
MapInfo > MapInfo Pro
Version
2023
Language
English
Product name
MapInfo Pro Advanced
Title
MapInfo Pro Advanced Help
First publish date
2016
Last updated
2023-09-20
Published on
2023-09-20T15:00:50.875000

You can use the calculator tool to support bitwise operation. These functions can be applied to unsigned integers. Any values supplied to these functions is converted to unsigned integers before applying the function.

Function Meaning
bitand(x,y) Bitwise “and” operation on x and y
bitor(x,y) Bitwise “or” operation on x and y
bitxor(x,y) Bitwise “exclusive or” operation on x and y
bitnot8(x) Bitwise “not” operation on x cast to 8 bit unsigned integer
bitnot16(x) Bitwise “not” operation on x cast to 16 bit unsigned integer
bitnot32(x) Bitwise “not” operation on x cast to 32 bit unsigned integer|
bitnot64(x) Bitwise “not” operation on x cast to 64 bit unsigned integer
bitshl(x,y) Bitwise “shift left” operation on x, by y bits
bitshr(x,y) Bitwise “shift right” operation on x, by y bits