14template<
class Signature>
15struct get_first_argument_type;
17template<
class R,
class Arg1,
class ...A>
18struct get_first_argument_type<R(Arg1, A...)>
26template<
class Signature>
31template<
class Signature>
42 auto begin()
const {
return m_atts.begin();}
44 auto end()
const {
return m_atts.end();}
49 : m_atts( {{
"long_name", std::string(long_name)}})
53 std::map<std::string, nc_att_t> m_atts;
68template<
class SignatureType,
class Attributes = std::map<std::
string, nc_att_t>>
std::decay_t< typename detail::get_first_argument_type< Signature >::type > get_first_argument_type_t
Definition records.h:27
typename std::function< Signature >::result_type get_result_type_t
Definition records.h:32
Definition easy_atts.h:15
Facilitate construction of CF attribute "long_name" in records lists.
Definition records.h:40
auto end() const
Make Iterable so file.put_atts will work.
Definition records.h:44
auto begin() const
Make Iterable so file.put_atts will work.
Definition records.h:42
LongNameAttribute(const char *long_name)
Specifically convert string literal to attribute.
Definition records.h:48
A realisation of the Record concept. Helper to generate NetCDF variables.
Definition records.h:70
std::string name
Name of the variable to create.
Definition records.h:72
SignatureType Signature
Signature of the function.
Definition records.h:71
std::function< Signature > function
The function to call that generates data for the variable.
Definition records.h:74
Attributes atts
Attributes of the variable: "long_name" is strongly recommended.
Definition records.h:73