Skip to content
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

Merged
merged 7 commits into from
Dec 6, 2024
Merged

F# 9 doc updates #43777

merged 7 commits into from
Dec 6, 2024

Conversation

@T-Gro
Copy link
Member

T-Gro commented Nov 26, 2024

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?

@T-Gro
Copy link
Member

T-Gro commented Nov 26, 2024

Was expecting to see "allow ref struct" interop support.
Affects structs, byref types, type constraints.

Also affect type augmentations which now are not possible (e.g. for seq<>) and people have to use C# style extension method.

@T-Gro
Copy link
Member

T-Gro commented Nov 26, 2024

https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/discriminated-unions#struct-discriminated-unions

Has a section about needing "unique names", i.e. not describing the state after F# 9.

@T-Gro
Copy link
Member

T-Gro commented Nov 26, 2024

As part as equality for structs in generic context is concerned, shouldn't the IEquatable interface now also be relevant for F#-authored types?

https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/symbol-and-operator-reference/arithmetic-operators#overloaded-and-generic-operators

@psfinaki
Copy link
Member Author

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?

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.

Was expecting to see "allow ref struct" interop support.
Affects structs, byref types, type constraints.

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.

https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/discriminated-unions#struct-discriminated-unions
Has a section about needing "unique names", i.e. not describing the state after F# 9.

Correct, missed that - fixed, thanks.

As part as equality for structs in generic context is concerned, shouldn't the IEquatable interface now also be relevant for F#-authored types?

Well, relevant in which sense? The added generated method doesn't implement any interface.

@T-Gro
Copy link
Member

T-Gro commented Nov 27, 2024

Ok, I have read all of those.

Re: Attributes
The table of attribute targets does not include f#-native types, like functions or DUs where the most impactful changes were.
Also, the table of attribute targets does not include other very common targets (does not have to include all though) which were part of the affected changes. e.g. struct, enum or method.

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:
Best would be check that PR on the topic, this changes what is allowed for generic parameters and consume it from F#.
This affects type augmentations, since in F#-authored code they cannot now be used for C#-defined type using "T:allows ref struct". Users have to switch to C#-style extensions. Best example is: Try a type augmentation for seq, it will fail due to not meeting generic constraints.

Re: Equality:
Ok I studied it. I do think it affects people writing their own equality via [<CustomEquality>] and not using the generated one.
For optimal performance, especially within structs in generic context, they should add overload similar to public bool Equals(SomeStruct obj, IEqualityComparer comp), or?

@psfinaki
Copy link
Member Author

Re: Attributes

Okay, added examples for methods, classes, interfaces and what not.

Re: ref structs and custom equality

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.

@T-Gro
Copy link
Member

T-Gro commented Nov 28, 2024

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:
https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/byrefs#byref-like-structs
"They cannot be used as a generic parameter"

@psfinaki
Copy link
Member Author

Right, I didn't connect ref struct and byrefs - I really don't follow low-level stuff in F#🤷

I copypasted the info from the updated RFC, hope it's clearer now.

@T-Gro
Copy link
Member

T-Gro commented Dec 6, 2024

@BillWagner , @KathleenDollard :

Excluding all changes touching null, this F# 9 docs update is ready. Can we merge?

Copy link
Member

@BillWagner BillWagner left a 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 :shipit: now.

@BillWagner BillWagner merged commit c853431 into main Dec 6, 2024
8 checks passed
@BillWagner BillWagner deleted the fsharp-docs branch December 6, 2024 14:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants