@nkeff/cardboard-js
    Preparing search index...

    Function computeMultiple

    • Computes a new Observable from multiple observables. The new Observable will automatically update and notify listeners whenever any of the source observables change.

      Type Parameters

      Parameters

      • observables: [...T[]]

        An array of source Observables to derive the value from.

      • transform: (...v: [...ExtractValue<T>[]]) => K

        A function that takes the values of the source observables and returns the derived value.

      Returns IObservable<K>

      A new Observable that will contain the derived value.