Skip to content

Instantly share code, notes, and snippets.

@yphastos
Last active March 7, 2019 00:55
Show Gist options
  • Save yphastos/ee9c12a0be19b4f542973470b174695e to your computer and use it in GitHub Desktop.
Save yphastos/ee9c12a0be19b4f542973470b174695e to your computer and use it in GitHub Desktop.
get second rightmost 0 bit as int
function secondRightmostZeroBit($n) {
return ~($n | ($n+1)) & (($n | ($n+1))+1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment