示例#1
0
// Flushes all data to disk, closes all open identifiers, and cleans up memory.
func close_hdf5() error {
	return togo_err(C.H5close())
}
示例#2
0
文件: hdf5.go 项目: simleb/go-hdf5
// Close flushes all data to disk, closes all open identifiers, and cleans up memory.
// It should generally be called before your application exits.
func Close() error {
	return h5err(C.H5close())
}