-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
F# 9 doc updates #43777
F# 9 doc updates #43777
Conversation
Do https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/attributes need a change w.r.t to attribute targets and special cases caused by F# representation of types and let bindings? |
Was expecting to see "allow ref struct" interop support. Also affect type augmentations which now are not possible (e.g. for seq<>) and people have to use C# style extension method. |
Has a section about needing "unique names", i.e. not describing the state after F# 9. |
As part as equality for structs in generic context is concerned, shouldn't the IEquatable interface now also be relevant for F#-authored types? |
I don't think so. I was looking at that but didn't find anything that has become wrong now. It talks of targets and so on, but generally nothing new there - even the raised diag has been there forever, just better reported now.
Hmmm, what in particular? We don't have anything about that in "what's new", nor can I find any mention of ref structs in the docs currently. And that's not something I was following really, so I have little understanding of the topic - so I need either something to copypaste, or some time to understand what's it all about.
Correct, missed that - fixed, thanks.
Well, relevant in which sense? The added generated method doesn't implement any interface. |
Ok, I have read all of those. Re: Attributes Especially in the case of not having an exact 1:1 lowering, this page should list the samples well. (e.g. how a let x = 5 differs from let x = 15, how DUs differ from enums etc.). Should be all in PRs on the topic. Re: Allows Ref Struct: Re: Equality: |
Okay, added examples for methods, classes, interfaces and what not.
We currently don't have anything on those topics in the docs. Both things deserve their own pages really, as I don't think there is a good way to "plug" them to existing topics. The point of this PR is to "fix" the docs which are becoming misleading or wrong with the F# 9 update. For the missing topics, we can create followups or just tasks here in the repo. |
Ok I searched the docs for it: There is a full page dedicated to byrefs here https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/byrefs , and it does have a section for byreflikes which this affects. (because byreflikes are now allowed to be passed as type instantions to selected BCL generic types|) Right now the docs page says: |
Right, I didn't connect I copypasted the info from the updated RFC, hope it's clearer now. |
@BillWagner , @KathleenDollard : Excluding all changes touching null, this F# 9 docs update is ready. Can we merge? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This LGTM as well. I'll now.
Related: dotnet/fsharp#17829.
Docs for F# 9, aligning with what's new.
This does not include Nullable Reference Types stuff, yet - will do as a follow up.
Internal previews