예제 #1
0
파일: h5g.go 프로젝트: jonlawlor/go-hdf5
// Close closes the Group.
func (g *Group) Close() error {
	if g.id == 0 {
		return nil
	}
	err := h5err(C.H5Gclose(g.id))
	g.id = 0
	return err
}
예제 #2
0
파일: h5g.go 프로젝트: simleb/go-hdf5
// Close closes the Group.
func (g *Group) Close() error {
	return h5err(C.H5Gclose(g.id))
}