= private = protected
inspect()
Returns a string containing a human-readable representation of the set. (“# {element1, element2, …}>”)
# File lib/set.rb, line 455 def inspect ids = (Thread.current[InspectKey] ||= []) if ids.include?(object_id) return sprintf('#<%s: {...}>', self.class.name) end begin ids << object_id return sprintf('#<%s: {%s}>', self.class, to_a.inspect[1..-2]) ensure ids.pop end end