method
pretty_print
v1_8_7_72 -
Show latest stable
- Class:
MatchData
pretty_print(q)public
No documentation available.
# File lib/pp.rb, line 443
def pretty_print(q)
q.object_group(self) {
q.breakable
q.seplist(1..self.size, lambda { q.breakable }) {|i|
q.pp self[i-1]
}
}
end