We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fde2b1 commit 627e19bCopy full SHA for 627e19b
1 file changed
rust/alloc/slice.rs
@@ -59,6 +59,10 @@ pub use core::slice::{Chunks, Windows};
59
pub use core::slice::{ChunksExact, ChunksExactMut};
60
#[stable(feature = "rust1", since = "1.0.0")]
61
pub use core::slice::{ChunksMut, Split, SplitMut};
62
+#[cfg(version("1.77"))]
63
+#[stable(feature = "slice_chunk_by", since = "1.77.0")]
64
+pub use core::slice::{ChunkBy, ChunkByMut};
65
+#[cfg(not(version("1.77")))]
66
#[unstable(feature = "slice_group_by", issue = "80552")]
67
pub use core::slice::{GroupBy, GroupByMut};
68
0 commit comments