Pacote
    Preparing search index...

    Function flatMap

    • Applies a function to transform the result of a task into a new task, allowing task results processing to be chained.

      Type Parameters

      • T
      • R

      Parameters

      • fn: (result: T) => Task<R>

        Function to apply to the result, creating a new task.

      • task: Task<T>

        Task to flatmap.

      Returns Task<R>

      Flatmapped task.