From e246a3154f9fc396b8bd012ef5f8f744798d6e1c Mon Sep 17 00:00:00 2001 From: Simon Byrne Date: Thu, 31 Aug 2023 11:36:59 -0700 Subject: [PATCH] add missing docs --- docs/src/interface/properties.md | 2 ++ src/properties.jl | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/docs/src/interface/properties.md b/docs/src/interface/properties.md index 20715c276..c71c043e5 100644 --- a/docs/src/interface/properties.md +++ b/docs/src/interface/properties.md @@ -25,9 +25,11 @@ setproperties! AttributeCreateProperties FileAccessProperties FileCreateProperties +GroupAccessProperties GroupCreateProperties DatasetCreateProperties DatasetAccessProperties +DatatypeAccessProperties DatasetTransferProperties LinkCreateProperties ObjectCreateProperties diff --git a/src/properties.jl b/src/properties.jl index 48a57d14a..0ba53bce1 100644 --- a/src/properties.jl +++ b/src/properties.jl @@ -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). @@ -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