method
pretty_print
pretty_print(pp)
public
Hide source
# File lib/set.rb, line 422 def pretty_print(pp) # :nodoc: pp.text sprintf('#<%s: {', self.class.name) pp.nest(1) { pp.seplist(self) { |o| pp.pp o } } pp.text "}>" end