←back to thread

Why F#?

(batsov.com)
438 points bozhidar | 4 comments | | HN request time: 0.621s | source
1. jonsagara ◴[] No.43547296[source]
The killer feature for me is type providers. I need to read a lot of CSV files of varying formats, and the CSV Type Provider lets me make quick work of them in a type-safe manner.

https://fsprojects.github.io/FSharp.Data/library/CsvProvider...

replies(3): >>43548210 #>>43552484 #>>43558829 #
2. Hojojo ◴[] No.43548210[source]
Wow, that sounds awesome. I'm jealous.
3. ◴[] No.43552484[source]
4. owlstuffing ◴[] No.43558829[source]
Agreed. Type providers bring metaprogramming to F# in a way that’s both powerful and innovative. The concept is amazing, enabling a new frontier for dynamically extending type safety. My only surprise is how little fanfare it has received since its introduction.

For a more pragmatic take on static metaprogramming, the manifold project[1] for Java is worth a look. Unlike F#, which leans toward expansive schemas, Manifold focuses on contained, compile-time integrations—handling JSON, XML, SQL, GraphQL, and even other languages in a seamless, type-safe way.

1. https://github.com/manifold-systems/manifold