(self, index)
| 476 | return ".".join([str(n) for n in self.buffer]) |
| 477 | |
| 478 | def get(self, index): |
| 479 | buf_index = math.floor(index / 8) |
| 480 | return ((self.buffer[buf_index] >> (7 - index % 8)) & 1) == 1 |
| 481 | |
| 482 | def put(self, num, length): |
| 483 | for i in range(length): |
no outgoing calls
no test coverage detected