8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
await
Adding fmap support for awaitables would allow writing
fmap
await ( get_data() |> async_func |> fmap$(non_async_func)) )
instead of having to write
(await async_func(get_data()) |> non_async_func