Skip to content

Instantly share code, notes, and snippets.

@justinmklam
Last active April 26, 2019 23:08
Show Gist options
  • Save justinmklam/bc802cdec18558dfe776cbeae6ac74e0 to your computer and use it in GitHub Desktop.
Save justinmklam/bc802cdec18558dfe776cbeae6ac74e0 to your computer and use it in GitHub Desktop.
Cheat sheet for bitwise operations
// Set certain bits without affecting the rest.
// Clear all bits to a known value, then set them.
// newvalue must contain all bits
value = (value & ~mask) | (newvalue & mask);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment