intersection test.
intersection test
919 920 921 922 923
# File 'lib/setfu.rb', line 919 def **(item) # intersection test a = BitSet.new(self) b = BitSet.new(item) return a ** b end