Class: Array

Inherits:
Object
  • Object
show all
Defined in:
lib/hrr_rb_ssh/compat/ruby/array.rb

Instance Method Summary collapse

Instance Method Details

#to_hObject



6
7
8
9
10
11
12
# File 'lib/hrr_rb_ssh/compat/ruby/array.rb', line 6

def to_h
  h = Hash.new
  self.each do |k, v|
    h[k] = v
  end
  h
end