-
Notifications
You must be signed in to change notification settings - Fork 183
add Movability to Generator #685
New issue
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is correct, but I'm not 100% sure of the rules around this.
Can you update the traits table in the book?
r=me with that
9243876
to
cef3c78
Compare
@@ -44,7 +44,7 @@ Some common examples of auto traits are `Send` and `Sync`. | |||
| slices | ⚬ | ⚬ | ⚬ | ✅ | ⚬ | ⚬ | ⚬ | ⚬ | ⚬ | ✅ | | |||
| arrays | ✅ | ✅ | ✅ | ❌ | ⚬ | ⚬ | ⚬ | ⚬ | ⚬ | ✅ | | |||
| closures | ✅ | ✅ | ✅ | ⚬ | ⚬ | ⚬ | ✅ | ⚬ | ⚬ | ✅ | | |||
| generators | ⚬ | ⚬ | ❌ | ⚬ | ⚬ | ⚬ | ⚬ | ❌ | ❌ | ❌ | | |||
| generators | ⚬ | ⚬ | ❌ | ⚬ | ⚬ | ⚬ | ⚬ | ✅ | ❌ | ❌ | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't this also implement auto trait handling for generators?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was already implemented but I guess it's complete now
cef3c78
to
0b8e2be
Compare
@bors r+ |
📌 Commit 0b8e2be has been approved by |
☀️ Test successful - checks-actions |
pretty straightforward
closes #618
cc #363