module _Inspect

A type that defines the .inspect method.

Since Object defines .inspect, nearly every object in Ruby has it defined: Only those that derive from BasicObject, or undef inspect won’t have it. It’s used in a few locations, such as Kernel#p and Array#join.