(hashedKey uint64)
| 247 | } |
| 248 | |
| 249 | func (c *BigCache) getShard(hashedKey uint64) (shard *cacheShard) { |
| 250 | return c.shards[hashedKey&c.shardMask] |
| 251 | } |
| 252 | |
| 253 | func (c *BigCache) providedOnRemove(wrappedEntry []byte, reason RemoveReason) { |
| 254 | c.config.OnRemove(readKeyFromEntry(wrappedEntry), readEntry(wrappedEntry)) |
no outgoing calls
no test coverage detected