Class: Array

Inherits:
Object show all
Defined in:
lib/pp.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#pretty_print(q) ⇒ Object

:nodoc:



356
357
358
359
360
361
362
# File 'lib/pp.rb', line 356

def pretty_print(q) # :nodoc:
  q.group(1, '[', ']') {
    q.seplist(self) {|v|
      q.pp v
    }
  }
end

#pretty_print_cycle(q) ⇒ Object

:nodoc:



364
365
366
# File 'lib/pp.rb', line 364

def pretty_print_cycle(q) # :nodoc:
  q.text(empty? ? '[]' : '[...]')
end