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:
402 403 404 405 406 407 408 |
# File 'lib/pp.rb', line 402 def pretty_print(q) # :nodoc: q.group(1, '[', ']') { q.seplist(self) {|v| q.pp v } } end |
#pretty_print_cycle(q) ⇒ Object
:nodoc:
410 411 412 |
# File 'lib/pp.rb', line 410 def pretty_print_cycle(q) # :nodoc: q.text(empty? ? '[]' : '[...]') end |