We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16e3df3 commit a656581Copy full SHA for a656581
lib/src/gc.rs
@@ -167,8 +167,17 @@ impl<'r> CollectableRefs<'r>
167
Ok(retval)
168
}
169
170
- /// Perform the computation of references to collect.
+ /// Find collectable references for multiple issues
171
///
172
+ /// This is a convenience function.
173
+ ///
174
+ /// # Note
175
176
+ /// Internally, this function collects the references during the call.
177
+ /// Consider using the `for_issues` function in conjunction with
178
+ /// `flat_map()` on an issue iterator instead.
179
180
+ #[deprecated]
181
pub fn into_refs<I, J, K>(self, issues: I) -> Result<Vec<Reference<'r>>>
182
where I: IntoIterator<Item = K, IntoIter = J>,
183
J: Iterator<Item = K>,
0 commit comments