class LibXML::XML::Document

Public Instance Methods

inspect() click to toggle source
# File lib/libxml/monkeypatches.rb, line 12
def inspect
        return "#<%p:%#016x %s:%s [%s]>" % [
                self.class,
                self.object_id * 2,
                self.node_type_name,
                self.root.name,
                self.rb_encoding,
        ]
end