# File lib/amqp/bit_set.rb, line 49 def unset(i) w = self.word_index(i) return if w.nil? @words[w] &= ~(1 << i) end