(self, count: int)
| 85 | ) |
| 86 | |
| 87 | def peek(self, count: int) -> str: |
| 88 | return self.string[self.position.chars : self.position.chars + count] |
| 89 | |
| 90 | def read(self, count: int) -> str: |
| 91 | result = self.string[self.position.chars : self.position.chars + count] |
no outgoing calls
no test coverage detected