Skip to content

Commit

Permalink
add missing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbyrne committed Aug 31, 2023
1 parent 912a89b commit e246a31
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/src/interface/properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ setproperties!
AttributeCreateProperties
FileAccessProperties
FileCreateProperties
GroupAccessProperties
GroupCreateProperties
DatasetCreateProperties
DatasetAccessProperties
DatatypeAccessProperties
DatasetTransferProperties
LinkCreateProperties
ObjectCreateProperties
Expand Down
12 changes: 12 additions & 0 deletions src/properties.jl
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,8 @@ Properties used when creating a new `Dataset`. Inherits from
- `:never`: Never fill
- `:ifset`: Fill if a value is set
- `fill_value`: the fill value for a dataset. See $(h5doc("H5P_SET_FILL_VALUE")).
- `chunk`: a tuple containing the size of the chunks to store each dimension.
See $(h5doc("H5P_SET_CHUNK")) (note that this uses Julia's column-major
ordering).
Expand Down Expand Up @@ -772,9 +774,19 @@ end

@propertyclass LinkAccessProperties API.H5P_LINK_ACCESS

"""
GroupAccessProperties(;kws...)
Properties used when accessing datatypes. None are currently defined.
"""
@propertyclass GroupAccessProperties API.H5P_GROUP_ACCESS
superclass(::Type{GroupAccessProperties}) = LinkAccessProperties

"""
DatatypeAccessProperties(;kws...)
Properties used when accessing datatypes. None are currently defined.
"""
@propertyclass DatatypeAccessProperties API.H5P_DATATYPE_ACCESS
superclass(::Type{DatatypeAccessProperties}) = LinkAccessProperties

Expand Down

0 comments on commit e246a31

Please sign in to comment.