Skip to content
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

Replace HandleIter with Handles #2028

Merged
merged 22 commits into from
Sep 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Implement IntoIterator for Handles
  • Loading branch information
hannobraun committed Sep 22, 2023
commit af1670eb240f6ab8150ca321e186076227024e8b
9 changes: 9 additions & 0 deletions crates/fj-core/src/objects/handles.rs
Original file line number Diff line number Diff line change
@@ -112,6 +112,15 @@ where
}
}

impl<'r, T> IntoIterator for &'r Handles<T> {
type Item = &'r Handle<T>;
type IntoIter = HandleIter<'r, T>;

fn into_iter(self) -> Self::IntoIter {
self.iter()
}
}

/// An iterator over handles to objects
///
/// This struct is returned by the respective methods of all objects that