fslang-suggestions
FSharpPlus
fslang-suggestions | FSharpPlus | |
---|---|---|
43 | 6 | |
345 | 843 | |
0.9% | 0.8% | |
2.9 | 8.4 | |
4 months ago | 2 months ago | |
F# | ||
- | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
fslang-suggestions
-
Reusing static constraints with multiple generics
Trying to extend this https://github.com/fsharp/fslang-suggestions/issues/1089 to have two generics:
-
VN Compiler. How to use Blazor components with Bolero. Introducing Blazor.Diagrams. (Pt. 1) (Restart)
Basically, what I've made in Spiral. There is even a F# issue to improve the syntax.
-
Can I call method on the output of the pipe?
Not currently supported but it's an open language suggestion that's likely to end up in F#. https://github.com/fsharp/fslang-suggestions/issues/506
- Mapperly - A .NET source generator for object to object mappings
-
Microfeatures I'd like to see in more languages
Re: the argument accessor shorthand, there seems to be a proposal for exactly that (using _ instead of &): https://github.com/fsharp/fslang-suggestions/issues/506#issu...
-
Need help with Azure.Storage.Blobs to do simple enumerate blob items
I found this post (https://github.com/fsharp/fslang-suggestions/issues/975) which is about the same thing, but I'm confused as to what the final resolution was. There was mention of a taskSeq, but I can't find much info on that.
-
OCaml programmer with some noob F# ecosystem questions
An issue in FSharp suggestions
-
Announcing .NET 7 Preview 7
F# doesn’t currently seem to support source generators.
-
What are the features you're looking forward to in the next version of Fsharp?
"Blessed" literals: only FSharp.List and System.Array have a built-in collection syntax in the language ([ ] and [| |]). Only FSharp.List has a special pattern matching constructor (::). The language itself shouldn't favor a particular type over another: it should be possible, at the library level, to write the same code but using different collection types (related discussion here).
-
F# (in)compatibility
I mostly write F# so I can only speak for F#, but if you want you can create a module which extends Seq to add the OCaml names. I suspect the same is possible in OCaml. The authors are not trying to impede compatibility, but compatibility is not a goal. If you value compatibility, or adhering to ML norms, and you use F#, I recommend you (kindly) advocate for it in relevant issues on the F# language discussion repo. https://github.com/fsharp/fslang-suggestions/issues
FSharpPlus
- Is it possible to add a NuGet package dependency to a project that points to a GitHub repository?
-
What is the difference between an Applicative and a Monad?
This should all be prefaced by saying that F# tends to avoid such category theory generalizations (unless you're using a library such as F#+ ). So, while I would encourage your continued understanding of the theory (it can be fun!), it's not as practical for writing good F# code as it would be in, say, Haskell. There are no type classes in Haskell, nor are there plans to add them.
-
Don Syme explains the downsides of type classes and the technical and philosophical reasons for not implementing them in F#
There maybe be a way to make it not have overhead. But there is precedent that this is not the case with Statically Resolved Type Parameters, and existing mechanism in F# that already lets you encode Haskell-style typeclasses and is the backbone of FSharpPlus, a typelevel (and more) library for F#. Solving constraints like this at compile-time (as opposed to having a runtime natively understand them) absolutely, positively leads to explosive compile times if you're not careful. I worked on the F# compiler for 5 years and I can attest to numerous reports related to accidental compile-time explosions just because SRTPs or inline was used a particular way.
-
Practically speaking, what does F#'s lack of higher-typed kinds mean?
F# devs tend to use SRTP (Statically resolved type parameters) see F#+ https://github.com/fsprojects/FSharpPlus .
-
F#+ 1.2 Released 🔷🚀
F#+ (FSharpPlus) 1.2 released with the following changes:
What are some alternatives?
HVM - A massively parallel, optimal functional runtime in Rust
language-ext - C# functional language extensions - a base class library for functional programming
Paket - A dependency manager for .NET with support for NuGet packages and Git repositories.
aether - Optics for F#
ProjectReunion - The Windows App SDK empowers all Windows desktop apps with modern Windows UI, APIs, and platform features, including back-compat support, shipped via NuGet.
hacn - A "monad" or DSL for creating React components using Fable and F# computation expressions
nand2tetris - Original course HDL solutions, F# implementations for the software stack, and VHDL implementations for the hardware stack for the nand2tetris course and The Elements of Computing Systems book.
Mondocks - An alternative way to interact with MongoDB databases from F# that allows you to use mongo-idiomatic constructs
fslang-design - RFCs and docs related to the F# language design process, see https://github.com/fsharp/fslang-suggestions to submit ideas
FStar - A Proof-oriented Programming Language
Dotnet CLI - The .NET Core command-line (CLI) tools, used for building .NET Core apps and libraries through your development flow (compiling, NuGet package management, running, testing, ...).
ZIO - ZIO — A type-safe, composable library for async and concurrent programming in Scala