Provides the C-style interface for ioda::Dimensions objects.
More...
|
IODA_DL void | ioda_dimensions_destruct (struct ioda_dimensions *d) |
| Deallocates a dimensions container. More...
|
|
IODA_DL bool | ioda_dimensions_get_dimensionality (const struct ioda_dimensions *d, size_t *val) |
| Gets dimensionality (i.e. number of dimensions) More...
|
|
IODA_DL bool | ioda_dimensions_set_dimensionality (struct ioda_dimensions *d, size_t N) |
| Set dimensionality of the dimensions container. More...
|
|
IODA_DL bool | ioda_dimensions_get_num_elements (const struct ioda_dimensions *d, size_t *val) |
| Get the number of distinct elements in the dimensions object (the product of each dimension size). More...
|
|
IODA_DL bool | ioda_dimensions_get_dim_cur (const struct ioda_dimensions *d, size_t n, ptrdiff_t *val) |
| Get the current size of the n-th dimension. More...
|
|
IODA_DL bool | ioda_dimensions_set_dim_cur (struct ioda_dimensions *d, size_t n, ptrdiff_t sz) |
| Set the current size of the n-th dimension. More...
|
|
IODA_DL bool | ioda_dimensions_get_dim_max (const struct ioda_dimensions *d, size_t n, ptrdiff_t *val) |
| Get the maximum size of the n-th dimension. More...
|
|
IODA_DL bool | ioda_dimensions_set_dim_max (struct ioda_dimensions *d, size_t n, ptrdiff_t sz) |
| Set the maximum size of the n-th dimension. More...
|
|
bool | ioda_dimensions_get_dimensionality (const ioda_dimensions *d, size_t *res) |
|
bool | ioda_dimensions_get_num_elements (const ioda_dimensions *d, size_t *res) |
|
bool | ioda_dimensions_get_dim_cur (const ioda_dimensions *d, size_t n, ptrdiff_t *res) |
|
bool | ioda_dimensions_get_dim_max (const ioda_dimensions *d, size_t n, ptrdiff_t *res) |
|
Provides the C-style interface for ioda::Dimensions objects.
◆ ioda_dimensions_destruct()
Deallocates a dimensions container.
- Parameters
-
[in] | d | is the dimensions object to be destructed. |
Definition at line 20 of file Dimensions_c.cpp.
◆ ioda_dimensions_get_dim_cur() [1/2]
bool ioda_dimensions_get_dim_cur |
( |
const ioda_dimensions * |
d, |
|
|
size_t |
n, |
|
|
ptrdiff_t * |
res |
|
) |
| |
◆ ioda_dimensions_get_dim_cur() [2/2]
Get the current size of the n-th dimension.
- Parameters
-
[in] | d | is the dimensions object. |
| n | is the nth dimension. Count starts at zero. |
[out] | val | stores the size of the dimension. |
- Returns
- true on success, false on failure.
- Precondition
- d must be a valid object.
-
n must be less than the dimensionality of d (see ioda_dimensions_get_dimensionality).
-
val must be a valid for output.
- Postcondition
- val is filled on function success and is unchanged on failure.
◆ ioda_dimensions_get_dim_max() [1/2]
bool ioda_dimensions_get_dim_max |
( |
const ioda_dimensions * |
d, |
|
|
size_t |
n, |
|
|
ptrdiff_t * |
res |
|
) |
| |
◆ ioda_dimensions_get_dim_max() [2/2]
Get the maximum size of the n-th dimension.
- Parameters
-
[in] | d | is the dimensions object. |
| n | is the nth dimension. Count starts at zero. |
[out] | val | stores the maximum size of the dimension. |
- Returns
- true on success, false on failure.
- Precondition
- d must be a valid object.
-
n must be less than the dimensionality of d (see ioda_dimensions_get_dimensionality).
-
val must be a valid for output.
- Postcondition
- val is filled on function success and is unchanged on failure.
◆ ioda_dimensions_get_dimensionality() [1/2]
bool ioda_dimensions_get_dimensionality |
( |
const ioda_dimensions * |
d, |
|
|
size_t * |
res |
|
) |
| |
◆ ioda_dimensions_get_dimensionality() [2/2]
Gets dimensionality (i.e. number of dimensions)
- Parameters
-
[in] | d | is the dimensions object. |
[out] | val | stores the dimensionality of d. |
- Returns
- true on success, false on failure.
- Precondition
- val must be valid (exist and be non-null).
-
d must be valid.
- Postcondition
- val is filled with the dimensionality on success. On failure, it is unchanged.
◆ ioda_dimensions_get_num_elements() [1/2]
bool ioda_dimensions_get_num_elements |
( |
const ioda_dimensions * |
d, |
|
|
size_t * |
res |
|
) |
| |
◆ ioda_dimensions_get_num_elements() [2/2]
Get the number of distinct elements in the dimensions object (the product of each dimension size).
- Parameters
-
[in] | d | is the dimensions object. |
[out] | val | stores the number of elements. |
- Returns
- true on success, false on failure.
- Precondition
- d must be a valid object.
-
val must be valid.
- Postcondition
- val is filled on function success and is unchanged on failure.
◆ ioda_dimensions_set_dim_cur()
bool ioda_dimensions_set_dim_cur |
( |
struct ioda_dimensions * |
d, |
|
|
size_t |
n, |
|
|
ptrdiff_t |
sz |
|
) |
| |
Set the current size of the n-th dimension.
- Parameters
-
[in] | d | is the dimensions object. |
| n | is the nth dimension. Count starts at zero. |
| sz | is the new size of the dimension. |
- Returns
- true on success, false on failure.
- Precondition
- d must be a valid object.
-
n must be less than the dimensionality of d (see ioda_dimensions_get_dimensionality).
- Postcondition
- Dimension size is only set on success. Unchanged on failure.
Definition at line 64 of file Dimensions_c.cpp.
◆ ioda_dimensions_set_dim_max()
bool ioda_dimensions_set_dim_max |
( |
struct ioda_dimensions * |
d, |
|
|
size_t |
n, |
|
|
ptrdiff_t |
sz |
|
) |
| |
Set the maximum size of the n-th dimension.
- Parameters
-
[in] | d | is the dimensions object. |
| n | is the nth dimension. Count starts at zero. |
| sz | is the new size of the dimension. |
- Returns
- true on success, false on failure.
- Precondition
- d must be a valid object.
-
n must be less than the dimensionality of d (see ioda_dimensions_get_dimensionality).
- Postcondition
- Dimension max size is only set on success. Unchanged on failure.
Definition at line 81 of file Dimensions_c.cpp.
◆ ioda_dimensions_set_dimensionality()
bool ioda_dimensions_set_dimensionality |
( |
struct ioda_dimensions * |
d, |
|
|
size_t |
N |
|
) |
| |
Set dimensionality of the dimensions container.
- Parameters
-
[in] | d | is the dimensions object. |
[in] | N | is the new dimensionality. |
- Returns
- true on success, false on failure.
- Precondition
- d must be a valid object.
Definition at line 35 of file Dimensions_c.cpp.