API Reference

IFunctionCallResultCacheEntryinterface

Represents one cache entry with its call index, result value, and dispose lifecycle.

Overview

Caches function-call results to avoid unnecessary recomputation.

Declaration

export interface IFunctionCallResultCacheEntry extends IDisposable {
  readonly index: IFunctionCallIndex;
  readonly result: unknown;
}

Import

import type { IFunctionCallResultCacheEntry } from '@rs-x/core';

Members

2 members in this interface.

readonly result
propertyreadonly
readonly result: unknown

Type

unknown