We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In the README, you have
$mask ^= EXECUTE; // remove a single bit from the $mask
This does not remove a single bit in the general case - xor toggles it. It only removes it if you know it's already set.
The general way to remove is
$mask &= ~EXECUTE;
Activity