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
Minimized:
import cats.syntax.all._ Seq(Seq()).sequence
Infers Seq[Seq[ in Scala 2, but Int => Seq[ in Scala 3.
Seq[Seq[
Int => Seq[
Original use case, encountered in #scala-users:
import cats.syntax.all._ for { x <- Seq(0, 1, 2).permutations y <- Seq(Seq(-1, 1), Seq(-1, 1), Seq(-1, 1)).sequence } yield (x, y)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Minimized:
Infers
Seq[Seq[
in Scala 2, butInt => Seq[
in Scala 3.Original use case, encountered in #scala-users:
The text was updated successfully, but these errors were encountered: