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
_
dict.get(d, key) |> result.unwrap(0)
on the unwrap yields
unwrap
let value = result.unwrap(0) dict.get(d, key) |> value
which does not compile. Should be value = result.unwrap(_, 0).
value = result.unwrap(_, 0)
The text was updated successfully, but these errors were encountered:
I'm surprised extraction works there at all! Should it?
Sorry, something went wrong.
Yeah I agree, I don't think it should extract the whole pipe steps
Successfully merging a pull request may close this issue.
on the
unwrap
yieldswhich does not compile. Should be
value = result.unwrap(_, 0)
.The text was updated successfully, but these errors were encountered: