structure of the npy file format string (a string-serialized python dictionary), see parseNumpyFormat
| 20 | /// structure of the npy file format string (a string-serialized python |
| 21 | /// dictionary), see parseNumpyFormat |
| 22 | struct Format { |
| 23 | std::string descr; |
| 24 | bool fortran_order; |
| 25 | std::vector<int64_t> shape; |
| 26 | }; |
| 27 | |
| 28 | /// tokens in the python dictionary, see parseNumpyFormat |
| 29 | enum Token { |
nothing calls this directly
no outgoing calls
no test coverage detected