offsetCache helps deduplicate common offset pairs
| 105 | |
| 106 | // offsetCache helps deduplicate common offset pairs |
| 107 | type offsetCache struct { |
| 108 | pairs map[uint64]*OffsetPair |
| 109 | } |
| 110 | |
| 111 | func newOffsetCache() *offsetCache { |
| 112 | return &offsetCache{ |
nothing calls this directly
no outgoing calls
no test coverage detected