(self, key_bytes)
| 980 | # ------------------------------------------------------------------ |
| 981 | |
| 982 | def _hash(self, key_bytes): |
| 983 | return (xxhash.xxh3_64_intdigest(key_bytes) % (self.size - 1)) + 1 |
| 984 | |
| 985 | def _find_slot(self, key_bytes): |
| 986 | """ |
no outgoing calls
no test coverage detected