예제 #1
0
파일: hdf5.go 프로젝트: pombredanne/go-hdf5
// 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())
}