We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
As a generalization of Tuple2[Int, Int], Int *: Int *: Unit should also allow autotupling.
Tuple2[Int, Int]
Int *: Int *: Unit
val h2: Int *: Int *: Unit => Int = (x, y) => x + y
it currently fails with
4 | val h2: Int *: Int *: Unit => Int = (x, y) => x + y | ^^^^^^^^^^^^^^^ | wrong number of parameters, expected: 1
The text was updated successfully, but these errors were encountered:
WIP Fix scala#5257: Support auto generic-tupling of parameters
a16c3ad
Fix scala#5257: Support auto generic-tupling of parameters
e989b9a
b0f0926
3740419
e5ba40e
Merge pull request #5259 from dotty-staging/fix-#5257
cf60e58
Fix #5257: Support auto generic-tupling of parameters
No branches or pull requests
As a generalization of
Tuple2[Int, Int]
,Int *: Int *: Unit
should also allow autotupling.it currently fails with
The text was updated successfully, but these errors were encountered: