Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
The HDF5 C type hid_t
is used to represent many, many different things.
In this Haskell interface, it is always wrapped up in a newtype
indicating its intent. These newtypes all need to be convertible to
and from HId_t
in order to actually use them with the raw bindings.
This modules provides a standard interface for doing so.
Documentation
Types which can be converted to HId_t
(i.e., those which can be passed
to HDF5 functions)
Instances
HId Attribute Source # | |
HId Dataset Source # | |
HId Dataspace Source # | |
HId Datatype Source # | |
HId ErrorClassID Source # | |
Defined in Bindings.HDF5.Error hid :: ErrorClassID -> HId_t Source # | |
HId ErrorStack Source # | |
Defined in Bindings.HDF5.Error hid :: ErrorStack -> HId_t Source # | |
HId File Source # | |
HId Group Source # | |
HId ObjectId Source # | |
HId PropertyListClassID Source # | |
Defined in Bindings.HDF5.PropertyList hid :: PropertyListClassID -> HId_t Source # | |
HId PropertyListID Source # | |
Defined in Bindings.HDF5.PropertyList hid :: PropertyListID -> HId_t Source # | |
HId DAPL Source # | |
HId DCPL Source # | |
HId DXPL Source # | |
HId FAPL Source # | |
HId FCPL Source # | |
HId FMPL Source # | |
HId GAPL Source # | |
HId GCPL Source # | |
HId LAPL Source # | |
HId LCPL Source # | |
HId OCPL Source # | |
HId OCPYPL Source # | |
HId STRCPL Source # | |
HId TAPL Source # | |
HId TCPL Source # | |
HId HId_t Source # | |
class FromHId t where Source #
Types which can be converted from HId_t
(i.e., those which can be
returned by HDF5 functions)
uncheckedFromHId :: HId_t -> t Source #