Class: Array
Instance Method Summary collapse
Instance Method Details
#pretty_print(q) ⇒ Object
100 101 102 103 104 105 106 107 108 |
# File 'lib/pry/core_extensions.rb', line 100 def pretty_print(q) q.group(1, '[', ']') { i = 0 q.seplist(self) { |*| q.pp self[i] i += 1 } } end |