Method: Wordlist::ListMethods#subtract
- Defined in:
- lib/wordlist/list_methods.rb
#subtract(other) ⇒ Operators::Subtract Also known as: -
Lazily enumerates over every word in the first wordlist, that is not in the second wordlist.
66 67 68 |
# File 'lib/wordlist/list_methods.rb', line 66 def subtract(other) Operators::Subtract.new(self,other) end |