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:



370
371
372
373
374
375
376
# File 'lib/pp.rb', line 370

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

#pretty_print_cycle(q) ⇒ Object

:nodoc:



378
379
380
# File 'lib/pp.rb', line 378

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