Return the little-endian 32-byte int at the specified byte index.
(self, 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.""" |
| 321 | word_str = self.data[index:index+4] |
| 322 | result, = struct.unpack("I", word_str) |
| 323 | return result |
| 324 | |
| 325 | def CharAt(self, index): |
| 326 | """Return the ascii character at the specified byte index.""" |
no outgoing calls
no test coverage detected