Skip to content

Instantly share code, notes, and snippets.

@rugyoga
Created July 27, 2019 19:12
Show Gist options
  • Save rugyoga/49b31fa761f6bb7dc688a5148e98e465 to your computer and use it in GitHub Desktop.
Save rugyoga/49b31fa761f6bb7dc688a5148e98e465 to your computer and use it in GitHub Desktop.
Bitmask operators
def get?(bitmask, offset)
(bitmask >> offset) & 1 == 1
end
def set!(bitmask, offset)
(1 << offset) | bitmask
end
def clear!(bitmask, offset)
~(1 << offset) & bitmask
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment