diff options
| author | Ulrik Sverdrup <bluss@users.noreply.github.com> | 2017-09-19 21:24:04 +0200 |
|---|---|---|
| committer | Ulrik Sverdrup <bluss@users.noreply.github.com> | 2017-09-19 21:24:21 +0200 |
| commit | 41a42263dffdfed9076029a3db973e1efad5f792 (patch) | |
| tree | 97aae5ffbfa9af71a9145216d88da768897e69d2 /src/libcore | |
| parent | 7e81cee934e37409591ce687d290ba6ac938c894 (diff) | |
| download | rust-41a42263dffdfed9076029a3db973e1efad5f792.tar.gz rust-41a42263dffdfed9076029a3db973e1efad5f792.zip | |
core: Assign tracking issue for iter_rfold
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/iter/traits.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter/traits.rs b/src/libcore/iter/traits.rs index bf74ed826bf..4386b0a6456 100644 --- a/src/libcore/iter/traits.rs +++ b/src/libcore/iter/traits.rs @@ -452,7 +452,7 @@ pub trait DoubleEndedIterator: Iterator { /// assert_eq!(result, "(1 + (2 + (3 + (4 + (5 + 0)))))"); /// ``` #[inline] - #[unstable(feature = "iter_rfold", issue = "0")] + #[unstable(feature = "iter_rfold", issue = "44705")] fn rfold<B, F>(mut self, mut accum: B, mut f: F) -> B where Self: Sized, F: FnMut(B, Self::Item) -> B, { |
