\brief Construct a chunked array from a single Array
| 78 | |
| 79 | /// \brief Construct a chunked array from a single Array |
| 80 | explicit ChunkedArray(std::shared_ptr<Array> chunk) |
| 81 | : ChunkedArray(ArrayVector{std::move(chunk)}) {} |
| 82 | |
| 83 | /// \brief Construct a chunked array from a vector of arrays and an optional data type |
| 84 | /// |