We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Now that dotnet/fsharp#13907 is merged would be good to have code-fix for this
Design
Implementation
From fun x -> x.Foo to _.Foo and maybe the other way around too ?
fun x -> x.Foo
_.Foo
// From let a5 : {| Foo : int -> {| X : string |} |} -> string = fun x -> x.Foo(5).X // To let a5 : {| Foo : int -> {| X : string |} |} -> string = _.Foo(5).X // From let a6 = [1] |> List.map(fun x -> x.ToString()) // To let a6 = [1] |> List.map _.ToString()
Note:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Details
Now that dotnet/fsharp#13907 is merged would be good to have code-fix for this
Design
Implementation
From
fun x -> x.Foo
to_.Foo
and maybe the other way around too ?Note:
Checklist
The text was updated successfully, but these errors were encountered: