Stabilize slice::chunks_exact() and slice::chunks_exact_mut()

Fixes #47115
This commit is contained in:
Sebastian Dröge
2018-10-18 10:22:34 +03:00
parent 121320d523
commit b08ca2958e
5 changed files with 18 additions and 25 deletions

View File

@@ -123,7 +123,7 @@ pub use core::slice::{from_raw_parts, from_raw_parts_mut};
pub use core::slice::{from_ref, from_mut};
#[stable(feature = "slice_get_slice", since = "1.28.0")]
pub use core::slice::SliceIndex;
#[unstable(feature = "chunks_exact", issue = "47115")]
#[stable(feature = "chunks_exact", since = "1.31.0")]
pub use core::slice::{ChunksExact, ChunksExactMut};
#[unstable(feature = "rchunks", issue = "55177")]
pub use core::slice::{RChunks, RChunksMut, RChunksExact, RChunksExactMut};