Method: HashFormatter#each

Defined in:
lib/hash_formatter.rb

#eachObject



25
26
27
28
# File 'lib/hash_formatter.rb', line 25

def each
  return to_enum unless block_given?
  @hash.map {|a| yield a.map(&method(:to_ruby))}
end