# File lib/core/facets/bitmask.rb, line 31
  def clear_bit(bit)
    mask = (1 << bit)
    self & ~mask
  end