Building an Asynchronous Effects Pipeline Without Await

is it possible to build a pipeline of async map effects? i.e., without requiring an await on the input from a previous async function:

    pipe(
      Effect.succeed(1),
      Effect.map(async (value) => value + 1),
      Effect.map(async (value) => (await value) + 1),
    );
Was this page helpful?