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 7e81cee commit 41a4226Copy full SHA for 41a4226
src/libcore/iter/traits.rs
@@ -452,7 +452,7 @@ pub trait DoubleEndedIterator: Iterator {
452
/// assert_eq!(result, "(1 + (2 + (3 + (4 + (5 + 0)))))");
453
/// ```
454
#[inline]
455
- #[unstable(feature = "iter_rfold", issue = "0")]
+ #[unstable(feature = "iter_rfold", issue = "44705")]
456
fn rfold<B, F>(mut self, mut accum: B, mut f: F) -> B where
457
Self: Sized, F: FnMut(B, Self::Item) -> B,
458
{
0 commit comments