class Array

must in the top-level namespace

Public Instance Methods

arr_to_hsh() click to toggle source
# File lib/client/service_foundation.rb, line 3
def arr_to_hsh
  hsh = {}
  self.each {|e| hsh.merge!(e)}
  hsh
end