You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(meaning: expand things() into its values, like the literal list to the left).
Today this doesn't compile, saying that b's type doesn't match things() (and that's expected).
How do you think this can be solved?
should we allow this IFF things() returns impl IntoIterator<Item = T>?
should we allow a modifier on arguments to mark these to interpret as iterators?
I'd like to be able to
(meaning: expand
things()
into its values, like the literal list to the left).Today this doesn't compile, saying that
b
's type doesn't matchthings()
(and that's expected).How do you think this can be solved?
things()
returnsimpl IntoIterator<Item = T>
?const
restriction onthings()
?BTW could you merge
test_matrix
's wiki this repo's? There's a new page as well as other modifications#128 (comment)
Thanks!
The text was updated successfully, but these errors were encountered: