Method: Set#&
- Defined in:
- lib/set.rb
permalink #&(enum) ⇒ Object Also known as: intersection
481 482 483 484 485 486 487 488 489 490 491 492 493 |
# File 'lib/set.rb', line 481 def &(enum) n = self.class.new if enum.is_a?(Set) if enum.size > size each { |o| n.add(o) if enum.include?(o) } else enum.each { |o| n.add(o) if include?(o) } end else do_with_enum(enum) { |o| n.add(o) if include?(o) } end n end |