class Array

Public Instance Methods

mirror() click to toggle source
# File lib/array_mirror.rb, line 4
def mirror
  Hash[self.zip(self)]
end