←back to thread

Why F#?

(batsov.com)
438 points bozhidar | 3 comments | | HN request time: 0.601s | source
Show context
eknkc ◴[] No.43546122[source]
As far as I can tell F# is one of those things where every single user is extremely happy. This happens rarely and I really am curious about the thing but never had time to get into it. I'm also pretty well versed in the .net ecosystem so it's probably gonna be easy.

Any tips? What kind of workflows might benefit the most if I were to incorporate it (to learn..)?

replies(4): >>43546205 #>>43546241 #>>43546333 #>>43548384 #
pjc50 ◴[] No.43546333[source]
The funny thing is that you can write very similar code in C#, so maybe you don't need to switch which language you're using as a CLR frontend.

    using System.Linq;
    using System;

    var names = new string[] {"Peter", "Julia", "Xi" };
    names.Select(name => $"Hello, {name}").ToList().ForEach(greeting =>   Console.WriteLine($"{greeting}! Enjoy your C#"));
LINQ is such a good library that I miss it in other languages. The Java stream equivalent just doesn't feel as fluent.
replies(8): >>43546511 #>>43547010 #>>43547095 #>>43547391 #>>43548261 #>>43548541 #>>43553969 #>>43554778 #
klysm ◴[] No.43547010[source]
This isn’t a great example of what linq is good at. There’s no reason to do ToList there, and the ForEach isn’t particularly idiomatic
replies(3): >>43547086 #>>43549695 #>>43555783 #
bob1029 ◴[] No.43549695[source]
> There’s no reason to do ToList there

In this case, I would move it to the very end if we are concerned about the underlying data shifting when the collection is actually enumerated.

Forgetting to materialize LINQ results can cause a lot of trouble, oftentimes in ways that happily evade detection while a debugger is attached.

replies(1): >>43550065 #
1. klysm ◴[] No.43550065[source]
> if we are concerned about the underlying data shifting when the collection is actually enumerated

I’m not sure what you mean by this. You can fulfill the IEnumerable contract without allowing multiple enumerations, but that doesn’t really have to do with the data shifting around. Doing ToList can be an expensive and unnecessary allocation

replies(1): >>43550636 #
2. bob1029 ◴[] No.43550636[source]
Imagine a live SQL query you are subsequently filtering with LINQ.
replies(1): >>43571873 #
3. klysm ◴[] No.43571873[source]
Then the ToList will force it to be evaluated on the client - not sure that situation applies