Method: Hash#to_list

Defined in:
lib/nendo/ruby/out_of_module.rb

#to_listObject



64
65
66
67
68
69
70
# File 'lib/nendo/ruby/out_of_module.rb', line 64

def to_list
  arr = Array.new
  self.each_pair { |key,val|
    arr << Nendo::Cell.new( key, val )
  }
  arr.to_list
end