| 14 | |
| 15 | template <storage::Ownership Ownership> |
| 16 | inline void read(storage::tar::FileReader &reader, |
| 17 | const std::string &name, |
| 18 | detail::CellMetricImpl<Ownership> &metric) |
| 19 | { |
| 20 | storage::serialization::read(reader, name + "/weights", metric.weights); |
| 21 | storage::serialization::read(reader, name + "/durations", metric.durations); |
| 22 | storage::serialization::read(reader, name + "/distances", metric.distances); |
| 23 | } |
| 24 | |
| 25 | template <storage::Ownership Ownership> |
| 26 | inline void write(storage::tar::FileWriter &writer, |
no outgoing calls
no test coverage detected