标签: ruby
是否有更好的方法来编写以下方法(如果可能,将其转换为单行?)。
def create_array(opts) array = [] opts.each{|key,value| array << value} array end
答案 0 :(得分:3)
如果opts为hash,请尝试:
opts
hash
def create_array(opts) opts.values end