MatchData (Class)

In: pp.rb
Parent: Object

Methods

Public Instance methods

[Source]

# File pp.rb, line 420
  def pretty_print(pp)
    pp.object_group(self) {
      pp.breakable
      1.upto(self.size) {|i|
        pp.breakable unless pp.first?
        pp.pp self[i-1]
      }
    }
  end

[Validate]