Module: SetFuMixinBinaryAndOperator

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

Overview

end BitSet

Instance Method Summary collapse

Instance Method Details

#&(item) ⇒ Object



1077
1078
1079
1080
1081
# File 'lib/setfu.rb', line 1077

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