-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[Merged by Bors] - bevy_reflect: IntoIter
for DynamicList
and DynamicMap
#4108
Conversation
Not sure why CI failed. Fixed an unrelated issue using |
CI error was due to a network error and should be ignored, no need to fix the markdown in this PR 👍 |
Ah, makes sense. I'll revert. |
IntoIter
for DynamicList
and DynamicMap
IntoIter
for DynamicList
and DynamicMap
bors r+ |
# Objective In some cases, you may want to take ownership of the values in `DynamicList` or `DynamicMap`. I came across this need while trying to implement a custom deserializer, but couldn't get ownership of the values in the list. ## Solution Implemented `IntoIter` for both `DynamicList` and `DynamicMap`.
Build failed (retrying...): |
@MrGVSV looks like this needs to be reformatted. |
bors r- |
Canceled. |
@alice-i-cecile I just did a quick |
Okay 🤔 Well, let's try again. If this fails, I think you should try rebasing. |
bors r+ |
# Objective In some cases, you may want to take ownership of the values in `DynamicList` or `DynamicMap`. I came across this need while trying to implement a custom deserializer, but couldn't get ownership of the values in the list. ## Solution Implemented `IntoIter` for both `DynamicList` and `DynamicMap`.
Timed out. |
1 similar comment
Timed out. |
Hm, okay I'll try a rebase then. |
92fe460
to
3608a81
Compare
bors r+ |
# Objective In some cases, you may want to take ownership of the values in `DynamicList` or `DynamicMap`. I came across this need while trying to implement a custom deserializer, but couldn't get ownership of the values in the list. ## Solution Implemented `IntoIter` for both `DynamicList` and `DynamicMap`.
Build failed: |
@MrGVSV looks like you got bitten by a rebase and accidentally changed CONTRIBUTING.md. Can you revert that? |
3608a81
to
6c5af23
Compare
Sorry about that (you can tell I don't rebase much haha) |
No worries; git can be a real pain at times. |
bors r+ |
# Objective In some cases, you may want to take ownership of the values in `DynamicList` or `DynamicMap`. I came across this need while trying to implement a custom deserializer, but couldn't get ownership of the values in the list. ## Solution Implemented `IntoIter` for both `DynamicList` and `DynamicMap`.
IntoIter
for DynamicList
and DynamicMap
IntoIter
for DynamicList
and DynamicMap
…ne#4108) # Objective In some cases, you may want to take ownership of the values in `DynamicList` or `DynamicMap`. I came across this need while trying to implement a custom deserializer, but couldn't get ownership of the values in the list. ## Solution Implemented `IntoIter` for both `DynamicList` and `DynamicMap`.
…ne#4108) # Objective In some cases, you may want to take ownership of the values in `DynamicList` or `DynamicMap`. I came across this need while trying to implement a custom deserializer, but couldn't get ownership of the values in the list. ## Solution Implemented `IntoIter` for both `DynamicList` and `DynamicMap`.
Objective
In some cases, you may want to take ownership of the values in
DynamicList
orDynamicMap
.I came across this need while trying to implement a custom deserializer, but couldn't get ownership of the values in the list.
Solution
Implemented
IntoIter
for bothDynamicList
andDynamicMap
.