Class: Array

Inherits:
Object show all
Defined in:
lib/chitin/core_ext/array.rb

Instance Method Summary collapse

Instance Method Details

#to_hashObject

[k, v], [k, v], …


3
4
5
# File 'lib/chitin/core_ext/array.rb', line 3

def to_hash
  self.inject({}) {|h, (k, v)| h[k] = v; h }
end