object_address_group(obj, &block)
A convenience method, like object_group, but also reformats the Object’s object_id.
# File lib/pp.rb, line 176 def object_address_group(obj, &block) str = Kernel.instance_method(:to_s).bind(obj).call str.chomp!('>') group(1, str, '>', &block) end