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 foo wants a &str and bar: Option<String>, I would expect foo(&try_opt!(bar) to work, but we need foo(&&try_opt!(bar). Which is odd looking.
foo
&str
bar: Option<String>
foo(&try_opt!(bar)
foo(&&try_opt!(bar)
The text was updated successfully, but these errors were encountered:
It is odd! I noticed this as well, and I have no explanation for it.
Sorry, something went wrong.
write_list
This is caused by rust-lang/rust#26978.
No branches or pull requests
If
foo
wants a&str
andbar: Option<String>
, I would expectfoo(&try_opt!(bar)
to work, but we needfoo(&&try_opt!(bar)
. Which is odd looking.The text was updated successfully, but these errors were encountered: