Method: Set#to_a

Defined in:
lib/set.rb

#to_aObject

Converts the set to an array. The order of elements is uncertain.



161
162
163
# File 'lib/set.rb', line 161

def to_a
  @hash.keys
end