diff options
| author | Nathaniel Woods <nwoods@cimpress.com> | 2025-03-06 12:33:01 -0500 |
|---|---|---|
| committer | Nathaniel Woods <nwoods@cimpress.com> | 2025-03-10 11:12:26 -0400 |
| commit | e48617f817a2528502c7f6a59255e46c63d933d9 (patch) | |
| tree | 16ac9a9c347856489d3644f83edd775185fa4d11 | |
| parent | 8bbc080cc71f4af39225d9b0f3e70cf478347f15 (diff) | |
| download | rust-e48617f817a2528502c7f6a59255e46c63d933d9.tar.gz rust-e48617f817a2528502c7f6a59255e46c63d933d9.zip | |
Changing #[stable] tag
| -rw-r--r-- | library/core/src/slice/iter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/slice/iter.rs b/library/core/src/slice/iter.rs index bf48068b254..8cbc6d4832e 100644 --- a/library/core/src/slice/iter.rs +++ b/library/core/src/slice/iter.rs @@ -3372,7 +3372,7 @@ where #[stable(feature = "slice_group_by", since = "1.77.0")] impl<'a, T: 'a, P> FusedIterator for ChunkBy<'a, T, P> where P: FnMut(&T, &T) -> bool {} -#[stable(feature = "slice_group_by", since = "1.77.0")] +#[stable(feature = "slice_group_by_clone", since = "CURRENT_RUSTC_VERSION")] impl<'a, T: 'a, P: Clone> Clone for ChunkBy<'a, T, P> { fn clone(&self) -> Self { Self { slice: self.slice, predicate: self.predicate.clone() } |
