lean4-code-actions
Version:
Refactorings and snippets for Lean 4
8 lines (7 loc) • 429 B
text/typescript
/**
* Note: the cache map can contain null and false values, so the function must check that the result is strictly not undefined
*/
export async function getFromCacheMap<Key, Result, Args extends unknown[]>(cache: Map<Key, Result>, key: Key, runner: (key: Key, ...args: Args) => Promise<Result>, ...args: Args): Promise<Result> {
const result = cache.get(key)
return result !== undefined ? result : runner(key, ...args)
}