26 namespace python_bindings {
29 template <
class C = Attribute>
37 return parent_->template isA<T>();
42 template <
class C = Attribute>
50 return parent_->template read<T>();
55 template <
class C = Attribute>
62 std::vector<T>
read()
const {
64 parent_->template read<T>(vals);
70 template <
class C = Attribute>
77 Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>
read()
const {
78 Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> vals;
80 parent_->readWithEigenRegular(vals);
82 parent_->template readWithEigenRegular(vals);
89 template <
class C = Attribute>
97 parent_->template write<T>(data);
102 template <
class C = Attribute>
109 void write(
const std::vector<T>& vals)
const {
110 parent_->template write<T>(vals);
115 template <
class C = Attribute>
122 void write(
const Eigen::Array<T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>& vals)
const {
124 parent_->writeWithEigenRegular(vals);
126 parent_->template writeWithEigenRegular(vals);
Dataspace selections for reading and writing ioda::Variable data.
Eigen::Array< T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor > read() const
AttributeReadNPArray(C *p)
AttributeReadSingle(C *p)
AttributeReadVector(C *p)
std::vector< T > read() const
void write(const Eigen::Array< T, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor > &vals) const
AttributeWriteNPArray(C *p)
AttributeWriteSingle(C *p)
void write(const std::vector< T > &vals) const
AttributeWriteVector(C *p)