(cls, store, count)
| 335 | |
| 336 | @classmethod |
| 337 | def read_string_array(cls, store, count): |
| 338 | return [cls.read_string(store, 1) for _ in range(count)] |
| 339 | |
| 340 | @classmethod |
| 341 | def read_bin(cls, store, count): |
nothing calls this directly
no test coverage detected