Module: SetFuMixinBinaryOrOperator
Instance Method Summary collapse
Instance Method Details
#|(item) ⇒ Object
625 626 627 628 629 |
# File 'lib/setfu.rb', line 625 def |(item) a = BitSet.new(self) b = BitSet.new(item) return a | b end |