-
Notifications
You must be signed in to change notification settings - Fork 7
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
Tuple as parameter in long function signatures #14
Comments
I think this is: module M =
let LongFunctionWithLotsOfParametersAndReturnType
(
aVeryLongParam: AVeryLongTypeThatYouNeedToUse,
aSecondVeryLongParam: AVeryLongTypeThatYouNeedToUse,
aThirdVeryLongParam: AVeryLongTypeThatYouNeedToUse
)
: ReturnType
=
// ... the body of the method follows
() |
Would the equals sign not be on the next line, similar to https://github.com/G-Research/fsharp-formatting-conventions#long-function-signatures? |
You're quite right. I'll edit that. |
Smaug123
added a commit
that referenced
this issue
Mar 21, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reading upon https://github.com/G-Research/fsharp-formatting-conventions#long-function-signatures,
what happens if the parameter is a long tuple?
Example:
How would this look like?
The text was updated successfully, but these errors were encountered: