Module: SetFuMixinBinaryOrOperator

Included in:
Range, String
Defined in:
lib/setfu.rb

Instance Method Summary collapse

Instance Method Details

#|(item) ⇒ Object



903
904
905
906
907
# File 'lib/setfu.rb', line 903

def |(item)
  a = BitSet.new(self)
  b = BitSet.new(item)
  return a | b
end