Applesauce
    Preparing search index...

    Function combineLatestByValue

    • Dynamic counterpart to switchMap((values) => combineLatest(values.map(...))) for arrays, with stable branches by value.

      A single branch is created per unique array value (Map key semantics) and is only created/removed when values are added/removed across emissions. Duplicate values in the same array share the same branch.

      Type Parameters

      • T
      • R

      Parameters

      Returns OperatorFunction<readonly T[], Map<T, R>>