| ▲ | shortrounddev2 3 days ago |
| I like F#'s syntax when all you're doing is pure logic. But when you have to interface with any IO like a database or REST call or something, you have to abandon the elegance of ML syntax and use these ugly computation blocks. In C# you can do something like this: var post = await _postService.getById(id);
in F# the equivalent is basically let getPostById id = async {
let! post = blogPostService.getPostById id
return post
}
let post = getPostById 42 |> Async.RunSynchronously
But not really, because RunSynchronously isn't the same thing as `await`. Realistically if you wanted to handle the result of an async computation you would need to create continuations. F# isn't the only ML-family language to suffer from this; Ocaml does as well. It always seemed to me like the pattern with any asynchronous operations in F# is to either:1. Do all logic in ML-syntax, then pass data into a computation block and handle I/O operations as the last part of your function, then return unit OR 2. Return a C#-style Task<> and handle all I/O in C# Either way, ML-style languages don't seem like they're designed for the kind of commercial CRUD-style applications that 90% of us find ourselves paid to do. |
|
| ▲ | throw234234234 2 days ago | parent | next [-] |
| I find it personally better for CRUD applications than C# and I've written my share in both languages. Your syntax comparisons aren't exactly comparable in the sense that you haven't put in the wrapping/boilerplate around the C# code - you can't just await anywhere. You are also using an async which to run needs to know which context - this can be nice when you don't want to run the composed Task/Async on the current sync context. These days you stick to tasks if you want C# like behavior - and there's libraries to take away some SyncContext overload via custom F# CE's if you want. The equivalent C# to your F# would be task { return! _postService.getById(id) }
Which is somewhat pointless anyway - just return the task from postService directly. There's also no need to run the async synchronously then - Async allow you to run the logic on task, thread, sync over and over - a very different model than tasks.To make C# comparable to your F# code (tasks are not the same so not quite true) you would need to define a method around it, and find a way if you want to run the resulting Task synchronously to do that safely. public async Task<Post> GetPostById(id) => await blogPostService.getPostById(id);
// This is not entirely eq - since tasks are hot
this.GetPostById(42).Result
|
|
| ▲ | cjbgkagh 2 days ago | parent | prev | next [-] |
| F# is a big language, it is a ML multi paradigm language that interoperates with C# so there is a lot of necessary complexity and many ways to do the same thing. A strong benefit of this is the ability to create a working functional paradigm prototype that can iteratively be refined to a faster version of itself by hot spot optimizing the slower parts with equivalent highly mutable functions while staying within the same language. Similar how one would use python and C++ and over time replace the python code with C++ code where performance is important. For the specific case of C# use of await it is unfortunate that C# didn't design this feature with F# interop in mind so it does require extra steps. F# did add the task builder to help with this so the 'await' is replaced with a 'let!' within a task builder block. let getById(id:int) : Task<string> = failwith "never"
let doWork(post:string) : unit = failwith "never"
let doThing() = task {
let! post = getById(42);
doWork(post); }
Alternatively the task can be converted to a normal F# async with the Async.AwaitTask function. let getPostById1(id:int) : Async<string> = async { return! getById(id) |> Async.AwaitTask }
let getPostById2(id:int) : Async<string> = getById(id) |> Async.AwaitTask
let getPostById3 : int -> Async<string> = getById >> Async.AwaitTask
|
| |
| ▲ | neonsunset 2 days ago | parent [-] | | It is best to just use task CE full-time unless you need specific behavior of async CEs. The author of the original comment, however, does not know this nor tried verifying whether F# actually works seamlessly with this nowadays (it does). Writing asynchronous code in F# involves less syntax noise than in C#. None of that boilerplate is required, F# should not be written that way at all. | | |
| ▲ | cjbgkagh 2 days ago | parent | next [-] | | F# is a big language so I think it is to be expected that beginners will not know these things. I don't think the fix is to simplify F# we should just understand that F# is not for everyone and that is ok. | | |
| ▲ | neonsunset 2 days ago | parent [-] | | This is perfectly fine, but I think it's better to be unsure about specific language feature than confidently state something that is not correct (anymore). Personally, I'm just annoyed by never-ending cycle of ".NET is bad because {reason x}", "When was this the case?", "10 years ago", "So?". Like in the example above, chances are you just won't see new F# code do this. It will just use task { ... } normally. |
| |
| ▲ | shortrounddev2 2 days ago | parent | prev [-] | | I understand that you CAN do this, I'm saying that it makes your code look like shit and takes away some of the elegance of ML | | |
| ▲ | neonsunset 2 days ago | parent | next [-] | | Please stop insisting on this. Task CE exists since F# 6.0 and handles awaiting the CoreLib Tasks and ValueTasks without any ceremony. | |
| ▲ | cjbgkagh 2 days ago | parent | prev | next [-] | | Are you saying you prefer Ocaml to F# or C# to F#? Your example was indeed inelegant but it is also poorly designed as you take 4 lines to reproduce a function that is already built in, people can poorly design code in any language. | | |
| ▲ | shortrounddev2 2 days ago | parent [-] | | I'm saying that I wish computation blocks looked better in F#. Instead of: let foo id = async {
let! bar = getBar id
return bar
}
I would prefer let async foo id =
let! bar = getBar id
bar
or even something like let async foo id =
getBar! id
So that computation blocks don't feel like you're switching to an entirely different language. Just wrap the ugliness in the same syntactic sugar that C# does. As it is, C# can achieve arrow syntax with async methods more elegantly than F# can: async Task<string> foo(int id) => await getBar(id);
This, to me, is also part of a larger problem of F# introducing unique keywords for specific language functions instead of reusing keywords, like member this.Foo = ...
and member val Foo = ...
| | |
| ▲ | cjbgkagh a day ago | parent [-] | | Your criticism is rather incoherent and it is difficult for me to make sense of it. You don't even have to use the computation block for that and can use the built in functions as I mentioned earlier and gave 3 examples of. You're both complaining about extra keywords while trying to make the case of adding yet another one. Thus your complaint boils down to F# not picking the exact keywords that you like - that the language is not specialized to exactly how you want to use it. In language design there are always tradeoffs but I'm unable to see how your suggestions would improve the language in the general case or even in your specific case. Computation expressions are a generalized concept which are there to add the exact kind of syntactic sugar that you're after. It's better than C# in that you can create your own as a first class concept in addition to using the built in ones. It's there for the exact purpose of creating mini-embedded DSLs, the very thing you're complaining about is the exact point of it. F# is not for everyone, nor should it be. | | |
| ▲ | shortrounddev2 a day ago | parent [-] | | > You're both complaining about extra keywords while trying to make the case of adding yet another one I did no such thing. async is already a keyword in F#, I'm just saying they should drop the brackets and remove the required return statement. > In language design there are always tradeoffs but I'm unable to see how your suggestions would improve the language in the general case or even in your specific case It would make the language easier to read, for one, and would reduce the amount of specialized syntax needed for specific features. It would preserve the original ML-style syntax for an extremely common operation and not force users into wrapping anything upstream of an async call in a computation block, which is the ugliest syntax feature of F# > Computation expressions are a generalized concept which are there to add the exact kind of syntactic sugar that you're after I understand that, and my argument is they failed to do so. The syntax looks bad. They could keep it for all I care, but they should add even more sugar on top to make it not look so bad. | | |
| ▲ | cjbgkagh a day ago | parent [-] | | 'async' is not a keyword in F#, it's a builder instance no different to the ones that you can create. It's just built in to the standard library. The return statement is only required if you want to return something form the computation expression. In your example you use async { let! x = f(); return x}, which can be reduced to async { return! f()}, which can be reduced to f(). The rest is your opinion that I don't agree with. | | |
| ▲ | shortrounddev2 a day ago | parent [-] | | The distinction in this case is utterly meaningless. This is about the ergonomics of the language. Which are lacking the minute to break out of pure functional land | | |
|
|
|
|
| |
| ▲ | 2 days ago | parent | prev [-] | | [deleted] |
|
|
|
|
| ▲ | malakai521 3 days ago | parent | prev | next [-] |
| `var post = await _postService.getById(id);` the F# equivalent is `let! post = _postService.getById id` |
| |
| ▲ | alternatex 2 days ago | parent [-] | | You're missing the task {} block | | |
| ▲ | neonsunset 2 days ago | parent | next [-] | | This assumes the context is already a task computation expression, which is what you'd have in asynchronous code. | |
| ▲ | sWW26 2 days ago | parent | prev [-] | | and the C# is missing the `async Task` boilerplate |
|
|
|
| ▲ | smoothdeveloper 3 days ago | parent | prev [-] |
| In C#, you can't use the await keyword in a non async method, so I find the argument short sighted. |
| |
| ▲ | shortrounddev2 3 days ago | parent | next [-] | | I don't see how that changes things. You'd have to async it all the way to the top but the syntax is still cleaner than F#. If you're using an Asp.Net controller you just declare the handler as async Task<IActionResult> and it's fine. Even program main methods can be async these days | | |
| ▲ | malakai521 2 days ago | parent [-] | | The syntax is exactly the same. You have `var x = await` in C# and `let! x =` in F# The controller handler is also the same. It will be marked with `async` keyword in C# and `task` CE in F# | | |
| ▲ | shortrounddev2 2 days ago | parent [-] | | It's absolutely not exactly the same; let! is only available within a computation block. If you want to return some value from the computation block and return to Functional land without having to pause the thread you need to use a continuation, which C# has built in syntactic sugar for in async/await and F# does not. | | |
| ▲ | sparkie 2 days ago | parent | next [-] | | `await` can only be used in an `async` function. How is that so different from `let!` only being available in a computation expression? | | |
| ▲ | shortrounddev2 2 days ago | parent [-] | | because an async function doesn't require you to change syntaxes to get them to work | | |
| ▲ | Smaug123 2 days ago | parent [-] | | 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 2 days ago | parent [-] | | 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... |
|
|
| |
| ▲ | xigoi 2 days ago | parent | prev [-] | | A computation block is the equivatent of an async function; |
|
|
| |
| ▲ | jayd16 3 days ago | parent | prev [-] | | If your code base is already using async await it's really not an issue. | | |
| ▲ | int_19h 2 days ago | parent [-] | | The point is that it's not actually different from C#, especially once you consider that F# also has task{} blocks that give you a .NET Task directly. |
|
|