Versions in this module Expand all Collapse all v1 v1.0.0 Jun 6, 2019 Changes in this version + type Attribute interface + Value func() string + type Document interface + CreateElement func(string) (Element, error) + CreateElementNS func(string, string) (Element, error) + DocumentElement func() (Node, error) + Dump func(bool) string + Encoding func() string + type Element interface + AppendText func(string) error + Attributes func() ([]Attribute, error) + GetAttribute func(string) (Attribute, error) + GetNamespaces func() ([]Namespace, error) + LocalName func() string + NamespaceURI func() string + Prefix func() string + RemoveAttribute func(string) error + SetAttribute func(string, string) error + SetNamespace func(string, string, ...bool) error + type Namespace interface + Prefix func() string + URI func() string + type Node interface + AddChild func(Node) error + AutoFree func() + ChildNodes func() (NodeList, error) + Copy func() (Node, error) + Find func(string) (XPathResult, error) + FirstChild func() (Node, error) + HasChildNodes func() bool + IsSameNode func(Node) bool + LastChild func() (Node, error) + Literal func() (string, error) + LookupNamespacePrefix func(string) (string, error) + LookupNamespaceURI func(string) (string, error) + MakeMortal func() + MakePersistent func() + NextSibling func() (Node, error) + NodeName func() string + NodeType func() clib.XMLNodeType + NodeValue func() string + OwnerDocument func() (Document, error) + ParentNode func() (Node, error) + ParseInContext func(string, int) (Node, error) + PreviousSibling func() (Node, error) + RemoveChild func(Node) error + SetDocument func(d Document) error + SetNodeName func(string) + SetNodeValue func(string) + String func() string + TextContent func() string + ToString func(int, bool) string + Walk func(func(Node) error) error + type NodeIter interface + Next func() bool + Node func() Node + type NodeList []Node + func (n NodeList) First() Node + func (n NodeList) Literal() (string, error) + func (n NodeList) NodeValue() string + func (n NodeList) String() string + type PtrSource interface + Free func() + Pointer func() uintptr + type XPathExpression interface + type XPathResult interface + Bool func() bool + Free func() + NodeIter func() NodeIter + NodeList func() NodeList + Number func() float64 + String func() string + Type func() clib.XPathObjectType