ritsuko
Helper utilities for ArtifactDB C++ code
|
Helper functions to load datasets. More...
#include <string>
#include <vector>
#include <stdexcept>
#include "H5Cpp.h"
#include "get_name.hpp"
#include "Stream1dStringDataset.hpp"
#include "Stream1dNumericDataset.hpp"
#include "as_numeric_datatype.hpp"
#include "_strings.hpp"
Go to the source code of this file.
Namespaces | |
namespace | ritsuko |
Assorted helper functions for parsing and validation. | |
namespace | ritsuko::hdf5 |
Assorted helper functions for HDF5 parsing. | |
Functions | |
std::string | ritsuko::hdf5::load_scalar_string_dataset (const H5::DataSet &handle) |
std::vector< std::string > | ritsuko::hdf5::load_1d_string_dataset (const H5::DataSet &handle, hsize_t full_length, hsize_t buffer_size) |
std::vector< std::string > | ritsuko::hdf5::load_1d_string_dataset (const H5::DataSet &handle, hsize_t buffer_size) |
template<typename Type_ > | |
Type_ | ritsuko::hdf5::load_scalar_numeric_dataset (const H5::DataSet &handle) |
template<typename Type_ > | |
std::vector< Type_ > | ritsuko::hdf5::load_1d_numeric_dataset (const H5::DataSet &handle, hsize_t full_length, hsize_t buffer_size) |
template<typename Type_ > | |
std::vector< Type_ > | ritsuko::hdf5::load_1d_numeric_dataset (const H5::DataSet &handle, hsize_t buffer_size) |
Helper functions to load datasets.