herr_t H5Pset_virtual_view(
hid_t dapl_id,
H5D_vds_view_t view
)
H5Pset_virtual_view
takes the access property list
for the virtual dataset, dapl_id
,
and the flag, view
, and sets the VDS view according to
the flag value.
If view
is set to H5D_VDS_FIRST_MISSING
,
the view includes all data before the first missing mapped data.
This setting provides a view containing only the continuous data
starting with the dataset’s first data element.
Any break in continuity terminates the view.
If view
is set to H5D_VDS_LAST_AVAILABLE
,
the view includes all available mapped data.
Missing mapped data is filled with the fill value set in the
VDS creation property list.
hid_t dapl_id |
|
IN: Identifier of the virtual dataset access property list. | ||||||||
H5D_vds_view_t view |
|
IN: Flag specifying the extent of the data
to be included in the view.
Valid values are:
|
Release | Change |
1.10.0 | C function introduced with this release. |