# File lib/core/facets/bitmask.rb, line 43
  def bit?(bit)
    mask = (1 << bit)
    (self & mask) != 0
  end