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