Class: Set
Do not use. This class is for internal use only.
Instance Method Summary
Instance Method Details
#pretty_print(pp)
[ GitHub ]# File 'lib/pp.rb', line 443
def pretty_print(pp) # :nodoc: pp.group(1, "#{self.class.name}[", ']') { pp.seplist(self) { |o| pp.pp o } } end
#pretty_print_cycle(pp)
[ GitHub ]# File 'lib/pp.rb', line 451
def pretty_print_cycle(pp) # :nodoc: name = self.class.name pp.text(empty? ? "#{name}[]" : "#{name}[...]") end