R/H5I.R

Defines functions H5Iis_valid H5Iget_type H5Iget_name

Documented in H5Iget_name H5Iget_type H5Iis_valid

H5Iget_name <- function( h5obj ) {
  h5checktype(h5obj, "object")
  tid <- .Call("_H5Iget_name", h5obj@ID, PACKAGE='rhdf5')
  tid
}

H5Iget_type <- function( h5identifier ) {
  stopifnot( is( h5identifier, "H5IdComponent" ) )
  tid <- .Call("_H5Iget_type", h5identifier@ID, PACKAGE='rhdf5')
  h5const2String("H5I_TYPE",tid)
}

H5Iis_valid<- function( h5identifier ) {
  stopifnot( is( h5identifier, "H5IdComponent" ) )
  tid <- .Call("_H5Iis_valid", h5identifier@ID, PACKAGE='rhdf5')
  tid
}

Try the rhdf5 package in your browser

Any scripts or data that you put into this service are public.

rhdf5 documentation built on Nov. 8, 2020, 6:56 p.m.