We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bitwise AND operator is removed in generated python code
e.g. readPos = (readAbsPos & READ_CHUNK_MASK); will convert to readPos = (readAbsPos READ_CHUNK_MASK)
bitwise AND operator is removed in generated python code
e.g.
readPos = (readAbsPos & READ_CHUNK_MASK);
will convert to
readPos = (readAbsPos READ_CHUNK_MASK)