Return the (unsigned) byte at the specified byte index.
(self, index)
| 313 | self.data = data |
| 314 | |
| 315 | def ByteAt(self, index): |
| 316 | """Return the (unsigned) byte at the specified byte index.""" |
| 317 | return ord(self.CharAt(index)) |
| 318 | |
| 319 | def IntAt(self, index): |
| 320 | """Return the little-endian 32-byte int at the specified byte index.""" |
no test coverage detected