class Hash

Public Instance Methods

pretty_print(q) click to toggle source
# File lib/project/pp.rb, line 348
def pretty_print(q)
  q.pp_hash self
end
pretty_print_cycle(q) click to toggle source
# File lib/project/pp.rb, line 352
def pretty_print_cycle(q)
  q.text(empty? ? '{}' : '{...}')
end