(dict: &DimDict)
| 262 | use crate::types::coord::value::CoordValue; |
| 263 | |
| 264 | fn roundtrip(dict: &DimDict) -> DimDict { |
| 265 | let mut buf = Vec::new(); |
| 266 | encode_coord_axis(dict, &mut buf).unwrap(); |
| 267 | let mut pos = 0; |
| 268 | decode_coord_axis(&buf, &mut pos).unwrap() |
| 269 | } |
| 270 | |
| 271 | fn make_dict(coords: &[i64]) -> DimDict { |
| 272 | let mut d = DimDict { |