| 323 | } |
| 324 | |
| 325 | tdb::DynamicTypedDatumView dimension_datum_at( |
| 326 | const Dimension& dim, size_t index) const { |
| 327 | auto type = dim.type(); |
| 328 | return dim.var_size() ? |
| 329 | tdb::DynamicTypedDatumView{varying_size_datum_at(index), type} : |
| 330 | tdb::DynamicTypedDatumView{ |
| 331 | fixed_size_datum_at(index, dim.coord_size()), type}; |
| 332 | } |
| 333 | }; |
| 334 | |
| 335 | } // namespace sm |
no test coverage detected