-
Notifications
You must be signed in to change notification settings - Fork 0
XML DOM for GOPL
License
syntelos/go-xdom
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
XML DOM for GOPL /* * Principal user interface. */ type Node interface { KindOf() (Kind) Content() (Text) String() (string) Print() Depth() (uint8) Read(string, Text) (Node, error) } type NodeList interface { CountChildren() (uint32) GetChild(uint32) (Node) } type AttributeList interface { CountAttributes() (uint32) GetAttribute(uint32) (Node) } /* * Read document. */ func (Document) ReadFile (*os.File) (Document, error) func (Document) Read (string, []byte) (Document, error) References [XML] https://www.w3.org/TR/REC-xml/REC-xml-20081126.xml
About
XML DOM for GOPL
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published