H5T_INTEGER-class: Class for HDF5 integer-datatypes.
Description
Inherits from class H5T.
Users should not create integer datatypes themselves using this class. Instead, integer should be derived
from one of the base-types such as h5types$H5T_NATIVE_INT (which internally automatically creates a copy of the type).
For a complete list of types see h5types$overview.
# NOT RUN {my_int <- h5types$H5T_NATIVE_INT
# make an int with 2 bitmy_int$set_sign(h5const$H5T_SGN_NONE)
my_int$set_size(1)
my_int$set_precision(2)
my_int$describe()
# }