Class: Hash
Overview
:nodoc:
Instance Method Summary collapse
-
#pretty_print(q) ⇒ Object
:nodoc:.
-
#pretty_print_cycle(q) ⇒ Object
:nodoc:.
Instance Method Details
#pretty_print(q) ⇒ Object
:nodoc:
416 417 418 |
# File 'lib/pp.rb', line 416 def pretty_print(q) # :nodoc: q.pp_hash self end |
#pretty_print_cycle(q) ⇒ Object
:nodoc:
420 421 422 |
# File 'lib/pp.rb', line 420 def pretty_print_cycle(q) # :nodoc: q.text(empty? ? '{}' : '{...}') end |