I found this integer variable declaration in a Java class:
int i7 = ((0x1F & arrayOfByte[i][4]) << 9) + ((0xFF & arrayOfByte[i][5]) << 1) + (0x1 & (0xFF & arrayOfByte[i][6]) >>> 7);
But are the arrows (>>> and <<) mean/doing?
Kind regards, Bastiaan
UPDATE: Sow they are bitshift operators, thanks! Found this good explanation video: https://www.youtube.com/watch?v=1qa0zvcdHXI