Applesauce
    Preparing search index...

    Function combineLatestByKey

    • Dynamic counterpart to switchMap(() => combineLatest(...)) for records, with stable branches by key.

      Each record key gets its own long-lived branch. Branches are only created/removed when keys are added/removed; value updates are pushed through the existing key branch.

      Type Parameters

      • Input extends Record<string, unknown>
      • R

      Parameters

      Returns OperatorFunction<Input, Record<Extract<keyof Input, string>, R>>