Skip to content

Instantly share code, notes, and snippets.

@padde
Created May 7, 2012 15:05
Show Gist options
  • Save padde/2628262 to your computer and use it in GitHub Desktop.
Save padde/2628262 to your computer and use it in GitHub Desktop.
Ruby Fixnum each_bit
class Fixnum
def each_bit
8.times do |p|
yield (self & 1 << p) >> p
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment