cache
cache<
T>(func:T):T
Defined in: packages/pythonlib/src/functools.ts:142
Cache decorator that caches all calls (no size limit) Equivalent to lru_cache(maxsize=None)
Type Parameters
| Type Parameter |
|---|
T extends (…args: unknown[]) => unknown |
Parameters
| Parameter | Type |
|---|---|
func | T |
Returns
T