(cls, ints, f)
| 266 | |
| 267 | @classmethod |
| 268 | def stream_serialize(cls, ints, f): |
| 269 | l = len(ints) |
| 270 | VarIntSerializer.stream_serialize(l, f) |
| 271 | for i in ints: |
| 272 | f.write(struct.pack(b"<i", i)) |
| 273 | |
| 274 | @classmethod |
| 275 | def stream_deserialize(cls, f): |
nothing calls this directly
no test coverage detected