Method GetRecord
member GetRecord: string -> 'R
Get attribute values on an HDF5 object and returns them as a record.
Declaration
member GetRecord: name:string -> 'R
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | HDF5 path to operate on. |
Returns
| Type | Description |
|---|---|
| 'R | Record containing the attribute values. |
Type Parameters
| Name | Description |
|---|---|
| 'R | Type of the F# record. It must contain only field of primitive data types. |
Remarks
The record must consists only of fields of primitive data types (int, float, string, etc.).
Each record field is read from an HDF5 attribute using the same name.