about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2020-08-01 11:48:34 -0700
committerJosh Stone <jistone@redhat.com>2020-09-04 19:51:29 -0700
commit864a28e01d70cd73ef7f0b64f6793697f638b8b0 (patch)
tree5573f3060c1348555a8a97049d61bb921baa30bf
parentb9fd6734e8ce315f0825157c0bf3aad67521e664 (diff)
downloadrust-864a28e01d70cd73ef7f0b64f6793697f638b8b0.tar.gz
rust-864a28e01d70cd73ef7f0b64f6793697f638b8b0.zip
Re-export ArrayChunksMut in alloc
-rw-r--r--library/alloc/src/slice.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/alloc/src/slice.rs b/library/alloc/src/slice.rs
index 8ea2c6dc859..677bfdd2349 100644
--- a/library/alloc/src/slice.rs
+++ b/library/alloc/src/slice.rs
@@ -93,6 +93,8 @@ use crate::vec::Vec;
 
 #[unstable(feature = "array_chunks", issue = "74985")]
 pub use core::slice::ArrayChunks;
+#[unstable(feature = "array_chunks", issue = "74985")]
+pub use core::slice::ArrayChunksMut;
 #[stable(feature = "slice_get_slice", since = "1.28.0")]
 pub use core::slice::SliceIndex;
 #[stable(feature = "from_ref", since = "1.28.0")]