Method: Set#join
- Defined in:
- lib/set.rb
permalink #join(separator = nil) ⇒ Object
Returns a string created by converting each element of the set to a string See also: Array#join
644 645 646 |
# File 'lib/set.rb', line 644 def join(separator=nil) to_a.join(separator) end |