Module: SetFuMixinBinaryIntersectionOperator
Instance Method Summary collapse
-
#**(item) ⇒ Object
intersection test.
Instance Method Details
#**(item) ⇒ Object
intersection test
563 564 565 566 567 |
# File 'lib/setfu.rb', line 563 def **(item) # intersection test a = Set.new(self) b = Set.new(item) return a ** b end |