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
if
avocADO should be able to correctly handle if guards in for comprehensions. e.g.
avocADO
for
for { a <- Some(1) if a < 2 b <- Some(2) } yield b
The text was updated successfully, but these errors were encountered:
Pattern matches in for comprehensions also should be correctly handled. (They depend on withFilter) e.g.
withFilter
for { (a, b) <- wait.map(_ => 1 -> 2) c <- wait.map(_ => a) } yield (a, b, c)
Sorry, something went wrong.
No branches or pull requests
avocADO
should be able to correctly handleif
guards infor
comprehensions.e.g.
The text was updated successfully, but these errors were encountered: