Reading upon https://github.com/G-Research/fsharp-formatting-conventions#long-function-signatures,
what happens if the parameter is a long tuple?
Example:
module M =
let LongFunctionWithLotsOfParametersAndReturnType
(
aVeryLongParam: AVeryLongTypeThatYouNeedToUse,
aSecondVeryLongParam: AVeryLongTypeThatYouNeedToUse,
aThirdVeryLongParam: AVeryLongTypeThatYouNeedToUse
) : ReturnType =
// ... the body of the method follows
()
How would this look like?
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?