• Map individual items in list. Mapped values are cached, and reused if items don't change between emissions

    Type Parameters

    • TItem
    • TOut

    Parameters

    • mapFunc: MapFunc<TItem, TOut>

      The function for mapping items (Should be pure for best result)

    • cache: boolean | Subscribable<boolean> = true

      Whether to use cache - default to true

    Returns OperatorFunction<TItem[], TOut[]>