module SetFuMixinBinaryIntersectionOperator

Public Instance Methods

**(item) click to toggle source
# File lib/setfu.rb, line 1101
def **(item)  # intersection test
  a = BitSet.new(self)
  b = BitSet.new(item)
  return a ** b
end