Skip to content

Instantly share code, notes, and snippets.

@Alan-FGR
Created July 23, 2016 16:26
Show Gist options
  • Select an option

  • Save Alan-FGR/e2db4185dd09d90859c0c9ebe2910a27 to your computer and use it in GitHub Desktop.

Select an option

Save Alan-FGR/e2db4185dd09d90859c0c9ebe2910a27 to your computer and use it in GitHub Desktop.
(((1 << i) & checkMask) | ((1 << next) & checkMask)) != ((1 << i) | (1 << next))
((1 << i) & checkMask) != 0 && ((1 << next) & checkMask) == 0 || ((1 << i) & checkMask) == 0 && ((1 << next) & checkMask) != 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment