Overview
Caches function-call results to avoid unnecessary recomputation.
API Reference
Represents one cache entry with its call index, result value, and dispose lifecycle.
export interface IFunctionCallResultCacheEntry extends IDisposable {
readonly index: IFunctionCallIndex;
readonly result: unknown;
}import type { IFunctionCallResultCacheEntry } from '@rs-x/core';2 members in this interface.
readonly index: IFunctionCallIndexreadonly result: unknownType
unknown