@squidcloud/client
    Preparing search index...

    Interface ExecuteFunctionCache<ValueType>

    Interface for a function result cache.

    interface ExecuteFunctionCache<ValueType> {
        get(args: unknown[]): ExecuteFunctionCacheLookupResult<ValueType>;
        set(args: unknown[], value: ValueType): void;
    }

    Type Parameters

    • ValueType

    Implemented by

    Index

    Methods

    Methods

    • Caches a result for the given arguments.

      Parameters

      Returns void