(self, count: int)
| 78 | ) |
| 79 | |
| 80 | def peek(self, count: int) -> str: |
| 81 | return self.string[self.position.chars:self.position.chars + count] |
| 82 | |
| 83 | def read(self, count: int) -> str: |
| 84 | result = self.string[self.position.chars:self.position.chars + count] |
no outgoing calls
no test coverage detected