Clear the current state of the MinHash. All hash values are reset.
(self)
| 238 | return True |
| 239 | |
| 240 | def clear(self): |
| 241 | ''' |
| 242 | Clear the current state of the MinHash. |
| 243 | All hash values are reset. |
| 244 | ''' |
| 245 | self.hashvalues = self._init_hashvalues(len(self)) |
| 246 | |
| 247 | def copy(self): |
| 248 | ''' |
no test coverage detected