Class: Array
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:
332 333 334 335 336 337 338 |
# File 'lib/pp.rb', line 332 def pretty_print(q) # :nodoc: q.group(1, '[', ']') { q.seplist(self) {|v| q.pp v } } end |
#pretty_print_cycle(q) ⇒ Object
:nodoc:
340 341 342 |
# File 'lib/pp.rb', line 340 def pretty_print_cycle(q) # :nodoc: q.text(empty? ? '[]' : '[...]') end |