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
This code seems weirdly formatted (online):
let a = b |> List.exists (fun p -> p.a && p.b |> List.exists (fun o -> o.a = "lorem ipsum dolor sit amet"))
I am thinking of (fun p being indented the same as the function body on the next line. I would expect (fun p to be on the same line as List.exists.
(fun p
List.exists
The text was updated successfully, but these errors were encountered:
autoNlnByFutureLazy for App(Lambda). Fix fsprojects#503
6c0df40
No newline before lambda unless really needed. Fix 503 (#529)
3d6fc2a
* Tests * autoNlnByFutureLazy for App(Lambda). Fix #503
Successfully merging a pull request may close this issue.
This code seems weirdly formatted (online):
I am thinking of
(fun p
being indented the same as the function body on the next line. I would expect(fun p
to be on the same line asList.exists
.The text was updated successfully, but these errors were encountered: