TableInterface is useful for testing.
| 95 | |
| 96 | // TableInterface is useful for testing. |
| 97 | type TableInterface interface { |
| 98 | Smallest() []byte |
| 99 | Biggest() []byte |
| 100 | DoesNotHave(hash uint64) bool |
| 101 | } |
| 102 | |
| 103 | // Table represents a loaded table file with the info we have about it. |
| 104 | type Table struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…