• Maps each item of the structure data to a monadic action, and evaluates them from left to right, then collects the result.

    Type Parameters

    • T

    • M

    Parameters

    • traversable: Traversable<T>

      The instance of Traversable for T.

    • monad: Monad<M>

      The instance of Monad for M.

    Returns (<A>(data) => (<B>(visitor) => Get1<M, Get1<T, B>>))

    The collected result of actions.

      • <A>(data): (<B>(visitor) => Get1<M, Get1<T, B>>)
      • Type Parameters

        • A

        Parameters

        Returns (<B>(visitor) => Get1<M, Get1<T, B>>)

          • <B>(visitor): Get1<M, Get1<T, B>>
          • Type Parameters

            • B

            Parameters

            • visitor: ((a) => Get1<M, B>)
                • (a): Get1<M, B>
                • Parameters

                  • a: A

                  Returns Get1<M, B>

            Returns Get1<M, Get1<T, B>>

Generated using TypeDoc