Class: LibXML::XML::Document

Inherits:
Object
  • Object
show all
Defined in:
lib/libxml/monkeypatches.rb

Instance Method Summary collapse

Instance Method Details

#inspectObject



12
13
14
15
16
17
18
19
20
# 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