Comment by sparkie

Comment by sparkie 3 days ago

3 replies

`await` can only be used in an `async` function. How is that so different from `let!` only being available in a computation expression?

shortrounddev2 3 days ago

because an async function doesn't require you to change syntaxes to get them to work

  • Smaug123 3 days ago

    It's actually sort of the other way round. C# has hardcoded syntax for async/await. F#'s syntax for async/await is a fully-general user-accessible mechanism.

    • sparkie 3 days ago

      They're not so different in that regard. C# `await` can be adapted by making an awaitable and awaiter type[1], which isn't to dissimilar to how a computation expression in F# needs to implement methods `Bind`, `Return`, `Yield`, etc.

      In both languages these patterns make up for the absence of typeclasses to express things like a functor, applicative, monad, comonad, etc.

      [1]https://ecma-international.org/wp-content/uploads/ECMA-334_7...