template<typename TReturn, typename TKey>
struct Euclid::Fits::TypedKey< TReturn, TKey >
A light structure to bind a return type and a key, e.g. for reading records and columns.
- Template Parameters
-
TReturn | The desired return type |
TKey | The key type, typically std::string or long |
TypedKeys
should not be instantiated directly. Instead maker as()
should be used for clarity, e.g.:
header.parse_n(as<float>("A"), as<int>("B"));
A light structure to bind a return type and a key, e.g. for reading records and columns.
Definition: DataUtils.h:136