Method: Wordlist::ListMethods#concat
- Defined in:
- lib/wordlist/list_methods.rb
#concat(other) ⇒ Operators::Concat Also known as: +
Lazily enumerates over the first wordlist, then the second.
39 40 41 |
# File 'lib/wordlist/list_methods.rb', line 39 def concat(other) Operators::Concat.new(self,other) end |