| 30 | } |
| 31 | |
| 32 | int Find(const char* key) { |
| 33 | InternalKey target(key, 100, kTypeValue); |
| 34 | InternalKeyComparator cmp(BytewiseComparator()); |
| 35 | return FindFile(cmp, files_, target.Encode()); |
| 36 | } |
| 37 | |
| 38 | bool Overlaps(const char* smallest, const char* largest) { |
| 39 | InternalKeyComparator cmp(BytewiseComparator()); |
nothing calls this directly
no test coverage detected