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