MCPcopy Create free account
hub / github.com/colbymchenry/codegraph /

Class

src/resolution/lru-cache.ts:14–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12 * position so hot keys survive eviction passes.
13 */
14export class LRUCache<K, V> {
15 private readonly max: number;
16 private readonly store = new Map<K, V>();
17

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected