Method: Set#join

Defined in:
lib/set.rb

#join(separator = nil) ⇒ Object

Returns a string created by converting each element of the set to a string See also: Array#join

[View source]

644
645
646
# File 'lib/set.rb', line 644

def join(separator=nil)
  to_a.join(separator)
end