(&self, data: &T)
| 52 | |
| 53 | impl HashSecret { |
| 54 | pub fn hash_value<T: Hash + ?Sized>(&self, data: &T) -> PyHash { |
| 55 | fix_sentinel(mod_int(self.hash_one(data) as _)) |
| 56 | } |
| 57 | |
| 58 | pub fn hash_iter<'a, T: 'a, I, F, E>(&self, iter: I, hash_func: F) -> Result<PyHash, E> |
| 59 | where |
no test coverage detected