If append_data is true, dataname is the current dataset, and is extensible, then as extend_data; otherwise as create_data. */
| 598 | /* If append_data is true, dataname is the current dataset, and is |
| 599 | extensible, then as extend_data; otherwise as create_data. */ |
| 600 | void h5file::create_or_extend_data(const char *dataname, int rank, const size_t *dims, |
| 601 | bool append_data, bool single_precision) { |
| 602 | if (get_extending(dataname)) |
| 603 | extend_data(dataname, rank, dims); |
| 604 | else |
| 605 | create_data(dataname, rank, dims, append_data, single_precision); |
| 606 | } |
| 607 | |
| 608 | /*****************************************************************************/ |
| 609 |
no outgoing calls
no test coverage detected