I noticed that Spark SQL data frames have methods for bitwise AND, OR, XOR. These operations seem to me very useful if you use a bit string. However, so far I have not found the possibility of having a BitSet column (I think I could create an integer column, but that would be limited to 32 bits).
How could I create a (βlongβ, that is, over 64 bit) BitSet that can be used with bitwise operations given by a file frame?
source
share