standard_lib/collections/contiguous/array/mod.rs
1//! A module containing [`Array`] and associtated types.
2//!
3//! Currently, the only other included type is [`IntoIter`] for owned iteration over an Array.
4//! [`IterMut`](std::slice::IterMut) and [`Iter`](std::slice::Iter) from [`std::slice`] are used for
5//! borrowed iteration.
6//!
7//! [`Array`] is also re-exported under the parent module.
8
9mod array;
10mod iter;
11mod tests;
12
13pub use array::*;
14pub use iter::*;