Hasher is the interface implemented by the objects that must be scoped.
| 19 | // Hasher is the interface implemented by the objects that must be |
| 20 | // scoped. |
| 21 | Hasher interface { |
| 22 | // Hash computes a unique instance hash suitable for indexing |
| 23 | // in a map. |
| 24 | Hash() string |
| 25 | } |
| 26 | |
| 27 | // Scoper provides a scope for generating unique names. |
| 28 | Scoper interface { |
no outgoing calls
no test coverage detected