1 Star 0 Fork 0

jack / libxml2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
node_namespace.go 402 Bytes
一键复制 编辑 原始数据 按行查看 历史
Daisuke Maki 提交于 2018-02-21 09:49 . Update import paths
package dom
import (
"github.com/lestrrat-go/libxml2/clib"
)
// URI returns the namespace URL
func (n *Namespace) URI() string {
return clib.XMLNamespaceHref(n)
}
// Prefix returns the prefix for this namespace
func (n *Namespace) Prefix() string {
return clib.XMLNamespacePrefix(n)
}
// Free releases the underlying C struct
func (n *Namespace) Free() {
clib.XMLNamespaceFree(n)
n.ptr = 0
}
1
https://gitee.com/wholesky/libxml2.git
git@gitee.com:wholesky/libxml2.git
wholesky
libxml2
libxml2
e6d9de61b80d

搜索帮助