UniqueKey is an interface implemented by values that serve as unique map keys for particular addresses. All implementations of UniqueKey are comparable and can thus be used as map keys. Unique keys generated from different address types are always distinct. All functionally-equivalent keys for the
| 13 | // distinct. All functionally-equivalent keys for the same address type |
| 14 | // always compare equal, and likewise functionally-different values do not. |
| 15 | type UniqueKey interface { |
| 16 | uniqueKeySigil() |
| 17 | } |
| 18 | |
| 19 | // UniqueKeyer is an interface implemented by types that can be represented |
| 20 | // by a unique key. |
nothing calls this directly
no outgoing calls
no test coverage detected