Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • pp.rb

Hash

Public Instance Methods

pretty_print(q) click to toggle source
 
               # File pp.rb, line 342
def pretty_print(q)
  q.pp_hash self
end
            
pretty_print_cycle(q) click to toggle source
 
               # File pp.rb, line 346
def pretty_print_cycle(q)
  q.text(empty? ? '{}' : '{...}')
end