Hasher interface is implemented by types that can tell you their hash.
| 14 | // Hasher interface is implemented by types that can tell you |
| 15 | // their hash. |
| 16 | type Hasher interface { |
| 17 | Hash() []byte |
| 18 | } |
| 19 | |
| 20 | // Equal functions take two hashers and return if they are equal. |
| 21 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…