core/array/mod.rs
1//! Utilities for the array primitive type.
2//!
3//! *[See also the array primitive type](array).*
4
5#![stable(feature = "core_array", since = "1.35.0")]
6
7use crate::borrow::{Borrow, BorrowMut};
8use crate::clone::TrivialClone;
9use crate::cmp::Ordering;
10use crate::convert::Infallible;
11use crate::error::Error;
12use crate::hash::{self, Hash};
13use crate::intrinsics::transmute_unchecked;
14use crate::iter::{UncheckedIterator, repeat_n};
15use crate::marker::Destruct;
16use crate::mem::{self, ManuallyDrop, MaybeUninit};
17use crate::ops::{
18 ChangeOutputType, ControlFlow, FromResidual, Index, IndexMut, NeverShortCircuit, Residual, Try,
19};
20use crate::ptr::{null, null_mut};
21use crate::slice::{Iter, IterMut};
22use crate::{fmt, ptr};
23
24mod ascii;
25mod drain;
26mod equality;
27mod iter;
28
29#[stable(feature = "array_value_iter", since = "1.51.0")]
30pub use iter::IntoIter;
31
32/// Creates an array of type `[T; N]` by repeatedly cloning a value.
33///
34/// This is the same as `[val; N]`, but it also works for types that do not
35/// implement [`Copy`].
36///
37/// The provided value will be used as an element of the resulting array and
38/// will be cloned N - 1 times to fill up the rest. If N is zero, the value
39/// will be dropped.
40///
41/// # Example
42///
43/// Creating multiple copies of a `String`:
44/// ```rust
45/// use std::array;
46///
47/// let string = "Hello there!".to_string();
48/// let strings = array::repeat(string);
49/// assert_eq!(strings, ["Hello there!", "Hello there!"]);
50/// ```
51#[inline]
52#[must_use = "cloning is often expensive and is not expected to have side effects"]
53#[stable(feature = "array_repeat", since = "1.91.0")]
54pub fn repeat<T: Clone, const N: usize>(val: T) -> [T; N] {
55 from_trusted_iterator(repeat_n(val, N))
56}
57
58/// Creates an array where each element is produced by calling `f` with
59/// that element's index while walking forward through the array.
60///
61/// This is essentially the same as writing
62/// ```text
63/// [f(0), f(1), f(2), …, f(N - 2), f(N - 1)]
64/// ```
65/// and is similar to `(0..i).map(f)`, just for arrays not iterators.
66///
67/// If `N == 0`, this produces an empty array without ever calling `f`.
68///
69/// # Example
70///
71/// ```rust
72/// // type inference is helping us here, the way `from_fn` knows how many
73/// // elements to produce is the length of array down there: only arrays of
74/// // equal lengths can be compared, so the const generic parameter `N` is
75/// // inferred to be 5, thus creating array of 5 elements.
76///
77/// let array = core::array::from_fn(|i| i);
78/// // indexes are: 0 1 2 3 4
79/// assert_eq!(array, [0, 1, 2, 3, 4]);
80///
81/// let array2: [usize; 8] = core::array::from_fn(|i| i * 2);
82/// // indexes are: 0 1 2 3 4 5 6 7
83/// assert_eq!(array2, [0, 2, 4, 6, 8, 10, 12, 14]);
84///
85/// let bool_arr = core::array::from_fn::<_, 5, _>(|i| i % 2 == 0);
86/// // indexes are: 0 1 2 3 4
87/// assert_eq!(bool_arr, [true, false, true, false, true]);
88/// ```
89///
90/// You can also capture things, for example to create an array full of clones
91/// where you can't just use `[item; N]` because it's not `Copy`:
92/// ```
93/// # // TBH `array::repeat` would be better for this, but it's not stable yet.
94/// let my_string = String::from("Hello");
95/// let clones: [String; 42] = std::array::from_fn(|_| my_string.clone());
96/// assert!(clones.iter().all(|x| *x == my_string));
97/// ```
98///
99/// The array is generated in ascending index order, starting from the front
100/// and going towards the back, so you can use closures with mutable state:
101/// ```
102/// let mut state = 1;
103/// let a = std::array::from_fn(|_| { let x = state; state *= 2; x });
104/// assert_eq!(a, [1, 2, 4, 8, 16, 32]);
105/// ```
106#[inline]
107#[stable(feature = "array_from_fn", since = "1.63.0")]
108#[rustc_const_unstable(feature = "const_array", issue = "147606")]
109pub const fn from_fn<T: [const] Destruct, const N: usize, F>(f: F) -> [T; N]
110where
111 F: [const] FnMut(usize) -> T + [const] Destruct,
112{
113 try_from_fn(NeverShortCircuit::wrap_mut_1(f)).0
114}
115
116/// Creates an array `[T; N]` where each fallible array element `T` is returned by the `cb` call.
117/// Unlike [`from_fn`], where the element creation can't fail, this version will return an error
118/// if any element creation was unsuccessful.
119///
120/// The return type of this function depends on the return type of the closure.
121/// If you return `Result<T, E>` from the closure, you'll get a `Result<[T; N], E>`.
122/// If you return `Option<T>` from the closure, you'll get an `Option<[T; N]>`.
123///
124/// # Arguments
125///
126/// * `cb`: Callback where the passed argument is the current array index.
127///
128/// # Example
129///
130/// ```rust
131/// #![feature(array_try_from_fn)]
132///
133/// let array: Result<[u8; 5], _> = std::array::try_from_fn(|i| i.try_into());
134/// assert_eq!(array, Ok([0, 1, 2, 3, 4]));
135///
136/// let array: Result<[i8; 200], _> = std::array::try_from_fn(|i| i.try_into());
137/// assert!(array.is_err());
138///
139/// let array: Option<[_; 4]> = std::array::try_from_fn(|i| i.checked_add(100));
140/// assert_eq!(array, Some([100, 101, 102, 103]));
141///
142/// let array: Option<[_; 4]> = std::array::try_from_fn(|i| i.checked_sub(100));
143/// assert_eq!(array, None);
144/// ```
145#[inline]
146#[unstable(feature = "array_try_from_fn", issue = "89379")]
147#[rustc_const_unstable(feature = "array_try_from_fn", issue = "89379")]
148pub const fn try_from_fn<R, const N: usize, F>(cb: F) -> ChangeOutputType<R, [R::Output; N]>
149where
150 R: [const] Try<Residual: [const] Residual<[R::Output; N]>, Output: [const] Destruct>,
151 F: [const] FnMut(usize) -> R + [const] Destruct,
152{
153 let mut array = [const { MaybeUninit::uninit() }; N];
154 match try_from_fn_erased(&mut array, cb) {
155 ControlFlow::Break(r) => FromResidual::from_residual(r),
156 ControlFlow::Continue(()) => {
157 // SAFETY: All elements of the array were populated.
158 try { unsafe { MaybeUninit::array_assume_init(array) } }
159 }
160 }
161}
162
163/// Converts a reference to `T` into a reference to an array of length 1 (without copying).
164#[stable(feature = "array_from_ref", since = "1.53.0")]
165#[rustc_const_stable(feature = "const_array_from_ref_shared", since = "1.63.0")]
166pub const fn from_ref<T>(s: &T) -> &[T; 1] {
167 // SAFETY: Converting `&T` to `&[T; 1]` is sound.
168 unsafe { &*(s as *const T).cast::<[T; 1]>() }
169}
170
171/// Converts a mutable reference to `T` into a mutable reference to an array of length 1 (without copying).
172#[stable(feature = "array_from_ref", since = "1.53.0")]
173#[rustc_const_stable(feature = "const_array_from_ref", since = "1.83.0")]
174pub const fn from_mut<T>(s: &mut T) -> &mut [T; 1] {
175 // SAFETY: Converting `&mut T` to `&mut [T; 1]` is sound.
176 unsafe { &mut *(s as *mut T).cast::<[T; 1]>() }
177}
178
179/// The error type returned when a conversion from a slice to an array fails.
180#[stable(feature = "try_from", since = "1.34.0")]
181#[derive(Debug, Copy, Clone)]
182pub struct TryFromSliceError(());
183
184#[stable(feature = "core_array", since = "1.35.0")]
185impl fmt::Display for TryFromSliceError {
186 #[inline]
187 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
188 "could not convert slice to array".fmt(f)
189 }
190}
191
192#[stable(feature = "try_from", since = "1.34.0")]
193impl Error for TryFromSliceError {}
194
195#[stable(feature = "try_from_slice_error", since = "1.36.0")]
196#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
197impl const From<Infallible> for TryFromSliceError {
198 fn from(x: Infallible) -> TryFromSliceError {
199 match x {}
200 }
201}
202
203#[stable(feature = "rust1", since = "1.0.0")]
204#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
205impl<T, const N: usize> const AsRef<[T]> for [T; N] {
206 #[inline]
207 fn as_ref(&self) -> &[T] {
208 &self[..]
209 }
210}
211
212#[stable(feature = "rust1", since = "1.0.0")]
213#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
214impl<T, const N: usize> const AsMut<[T]> for [T; N] {
215 #[inline]
216 fn as_mut(&mut self) -> &mut [T] {
217 &mut self[..]
218 }
219}
220
221#[stable(feature = "array_borrow", since = "1.4.0")]
222#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
223impl<T, const N: usize> const Borrow<[T]> for [T; N] {
224 fn borrow(&self) -> &[T] {
225 self
226 }
227}
228
229#[stable(feature = "array_borrow", since = "1.4.0")]
230#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
231impl<T, const N: usize> const BorrowMut<[T]> for [T; N] {
232 fn borrow_mut(&mut self) -> &mut [T] {
233 self
234 }
235}
236
237/// Tries to create an array `[T; N]` by copying from a slice `&[T]`.
238/// Succeeds if `slice.len() == N`.
239///
240/// ```
241/// let bytes: [u8; 3] = [1, 0, 2];
242///
243/// let bytes_head: [u8; 2] = <[u8; 2]>::try_from(&bytes[0..2]).unwrap();
244/// assert_eq!(1, u16::from_le_bytes(bytes_head));
245///
246/// let bytes_tail: [u8; 2] = bytes[1..3].try_into().unwrap();
247/// assert_eq!(512, u16::from_le_bytes(bytes_tail));
248/// ```
249#[stable(feature = "try_from", since = "1.34.0")]
250#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
251impl<T, const N: usize> const TryFrom<&[T]> for [T; N]
252where
253 T: Copy,
254{
255 type Error = TryFromSliceError;
256
257 #[inline]
258 fn try_from(slice: &[T]) -> Result<[T; N], TryFromSliceError> {
259 <&Self>::try_from(slice).copied()
260 }
261}
262
263/// Tries to create an array `[T; N]` by copying from a mutable slice `&mut [T]`.
264/// Succeeds if `slice.len() == N`.
265///
266/// ```
267/// let mut bytes: [u8; 3] = [1, 0, 2];
268///
269/// let bytes_head: [u8; 2] = <[u8; 2]>::try_from(&mut bytes[0..2]).unwrap();
270/// assert_eq!(1, u16::from_le_bytes(bytes_head));
271///
272/// let bytes_tail: [u8; 2] = (&mut bytes[1..3]).try_into().unwrap();
273/// assert_eq!(512, u16::from_le_bytes(bytes_tail));
274/// ```
275#[stable(feature = "try_from_mut_slice_to_array", since = "1.59.0")]
276#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
277impl<T, const N: usize> const TryFrom<&mut [T]> for [T; N]
278where
279 T: Copy,
280{
281 type Error = TryFromSliceError;
282
283 #[inline]
284 fn try_from(slice: &mut [T]) -> Result<[T; N], TryFromSliceError> {
285 <Self>::try_from(&*slice)
286 }
287}
288
289/// Tries to create an array ref `&[T; N]` from a slice ref `&[T]`. Succeeds if
290/// `slice.len() == N`.
291///
292/// ```
293/// let bytes: [u8; 3] = [1, 0, 2];
294///
295/// let bytes_head: &[u8; 2] = <&[u8; 2]>::try_from(&bytes[0..2]).unwrap();
296/// assert_eq!(1, u16::from_le_bytes(*bytes_head));
297///
298/// let bytes_tail: &[u8; 2] = bytes[1..3].try_into().unwrap();
299/// assert_eq!(512, u16::from_le_bytes(*bytes_tail));
300/// ```
301#[stable(feature = "try_from", since = "1.34.0")]
302#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
303impl<'a, T, const N: usize> const TryFrom<&'a [T]> for &'a [T; N] {
304 type Error = TryFromSliceError;
305
306 #[inline]
307 fn try_from(slice: &'a [T]) -> Result<&'a [T; N], TryFromSliceError> {
308 slice.as_array().ok_or(TryFromSliceError(()))
309 }
310}
311
312/// Tries to create a mutable array ref `&mut [T; N]` from a mutable slice ref
313/// `&mut [T]`. Succeeds if `slice.len() == N`.
314///
315/// ```
316/// let mut bytes: [u8; 3] = [1, 0, 2];
317///
318/// let bytes_head: &mut [u8; 2] = <&mut [u8; 2]>::try_from(&mut bytes[0..2]).unwrap();
319/// assert_eq!(1, u16::from_le_bytes(*bytes_head));
320///
321/// let bytes_tail: &mut [u8; 2] = (&mut bytes[1..3]).try_into().unwrap();
322/// assert_eq!(512, u16::from_le_bytes(*bytes_tail));
323/// ```
324#[stable(feature = "try_from", since = "1.34.0")]
325#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
326impl<'a, T, const N: usize> const TryFrom<&'a mut [T]> for &'a mut [T; N] {
327 type Error = TryFromSliceError;
328
329 #[inline]
330 fn try_from(slice: &'a mut [T]) -> Result<&'a mut [T; N], TryFromSliceError> {
331 slice.as_mut_array().ok_or(TryFromSliceError(()))
332 }
333}
334
335/// The hash of an array is the same as that of the corresponding slice,
336/// as required by the `Borrow` implementation.
337///
338/// ```
339/// use std::hash::BuildHasher;
340///
341/// let b = std::hash::RandomState::new();
342/// let a: [u8; 3] = [0xa8, 0x3c, 0x09];
343/// let s: &[u8] = &[0xa8, 0x3c, 0x09];
344/// assert_eq!(b.hash_one(a), b.hash_one(s));
345/// ```
346#[stable(feature = "rust1", since = "1.0.0")]
347impl<T: Hash, const N: usize> Hash for [T; N] {
348 fn hash<H: hash::Hasher>(&self, state: &mut H) {
349 Hash::hash(&self[..], state)
350 }
351}
352
353#[stable(feature = "rust1", since = "1.0.0")]
354impl<T: fmt::Debug, const N: usize> fmt::Debug for [T; N] {
355 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
356 fmt::Debug::fmt(&&self[..], f)
357 }
358}
359
360#[stable(feature = "rust1", since = "1.0.0")]
361impl<'a, T, const N: usize> IntoIterator for &'a [T; N] {
362 type Item = &'a T;
363 type IntoIter = Iter<'a, T>;
364
365 fn into_iter(self) -> Iter<'a, T> {
366 self.iter()
367 }
368}
369
370#[stable(feature = "rust1", since = "1.0.0")]
371impl<'a, T, const N: usize> IntoIterator for &'a mut [T; N] {
372 type Item = &'a mut T;
373 type IntoIter = IterMut<'a, T>;
374
375 fn into_iter(self) -> IterMut<'a, T> {
376 self.iter_mut()
377 }
378}
379
380#[stable(feature = "index_trait_on_arrays", since = "1.50.0")]
381#[rustc_const_unstable(feature = "const_index", issue = "143775")]
382impl<T, I, const N: usize> const Index<I> for [T; N]
383where
384 [T]: [const] Index<I>,
385{
386 type Output = <[T] as Index<I>>::Output;
387
388 #[inline]
389 fn index(&self, index: I) -> &Self::Output {
390 Index::index(self as &[T], index)
391 }
392}
393
394#[stable(feature = "index_trait_on_arrays", since = "1.50.0")]
395#[rustc_const_unstable(feature = "const_index", issue = "143775")]
396impl<T, I, const N: usize> const IndexMut<I> for [T; N]
397where
398 [T]: [const] IndexMut<I>,
399{
400 #[inline]
401 fn index_mut(&mut self, index: I) -> &mut Self::Output {
402 IndexMut::index_mut(self as &mut [T], index)
403 }
404}
405
406/// Implements comparison of arrays [lexicographically](Ord#lexicographical-comparison).
407#[stable(feature = "rust1", since = "1.0.0")]
408#[rustc_const_unstable(feature = "const_cmp", issue = "143800")]
409impl<T: [const] PartialOrd, const N: usize> const PartialOrd for [T; N] {
410 #[inline]
411 fn partial_cmp(&self, other: &[T; N]) -> Option<Ordering> {
412 PartialOrd::partial_cmp(&&self[..], &&other[..])
413 }
414 #[inline]
415 fn lt(&self, other: &[T; N]) -> bool {
416 PartialOrd::lt(&&self[..], &&other[..])
417 }
418 #[inline]
419 fn le(&self, other: &[T; N]) -> bool {
420 PartialOrd::le(&&self[..], &&other[..])
421 }
422 #[inline]
423 fn ge(&self, other: &[T; N]) -> bool {
424 PartialOrd::ge(&&self[..], &&other[..])
425 }
426 #[inline]
427 fn gt(&self, other: &[T; N]) -> bool {
428 PartialOrd::gt(&&self[..], &&other[..])
429 }
430}
431
432/// Implements comparison of arrays [lexicographically](Ord#lexicographical-comparison).
433#[stable(feature = "rust1", since = "1.0.0")]
434#[rustc_const_unstable(feature = "const_cmp", issue = "143800")]
435impl<T: [const] Ord, const N: usize> const Ord for [T; N] {
436 #[inline]
437 fn cmp(&self, other: &[T; N]) -> Ordering {
438 Ord::cmp(&&self[..], &&other[..])
439 }
440}
441
442#[stable(feature = "copy_clone_array_lib", since = "1.58.0")]
443impl<T: Copy, const N: usize> Copy for [T; N] {}
444
445#[stable(feature = "copy_clone_array_lib", since = "1.58.0")]
446impl<T: Clone, const N: usize> Clone for [T; N] {
447 #[inline]
448 fn clone(&self) -> Self {
449 SpecArrayClone::clone(self)
450 }
451
452 #[inline]
453 fn clone_from(&mut self, other: &Self) {
454 self.clone_from_slice(other);
455 }
456}
457
458#[doc(hidden)]
459#[unstable(feature = "trivial_clone", issue = "none")]
460unsafe impl<T: TrivialClone, const N: usize> TrivialClone for [T; N] {}
461
462trait SpecArrayClone: Clone {
463 fn clone<const N: usize>(array: &[Self; N]) -> [Self; N];
464}
465
466impl<T: Clone> SpecArrayClone for T {
467 #[inline]
468 default fn clone<const N: usize>(array: &[T; N]) -> [T; N] {
469 from_trusted_iterator(array.iter().cloned())
470 }
471}
472
473impl<T: TrivialClone> SpecArrayClone for T {
474 #[inline]
475 fn clone<const N: usize>(array: &[T; N]) -> [T; N] {
476 // SAFETY: `TrivialClone` implies that this is equivalent to calling
477 // `Clone` on every element.
478 unsafe { ptr::read(array) }
479 }
480}
481
482// The Default impls cannot be done with const generics because `[T; 0]` doesn't
483// require Default to be implemented, and having different impl blocks for
484// different numbers isn't supported yet.
485//
486// Trying to improve the `[T; 0]` situation has proven to be difficult.
487// Please see these issues for more context on past attempts and crater runs:
488// - https://github.com/rust-lang/rust/issues/61415
489// - https://github.com/rust-lang/rust/pull/145457
490
491macro_rules! array_impl_default {
492 {$n:expr, $t:ident $($ts:ident)*} => {
493 #[stable(since = "1.4.0", feature = "array_default")]
494 impl<T> Default for [T; $n] where T: Default {
495 fn default() -> [T; $n] {
496 [$t::default(), $($ts::default()),*]
497 }
498 }
499 array_impl_default!{($n - 1), $($ts)*}
500 };
501 {$n:expr,} => {
502 #[stable(since = "1.4.0", feature = "array_default")]
503 impl<T> Default for [T; $n] {
504 fn default() -> [T; $n] { [] }
505 }
506 };
507}
508
509array_impl_default! {32, T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T}
510
511impl<T, const N: usize> [T; N] {
512 /// Returns an array of the same size as `self`, with function `f` applied to each element
513 /// in order.
514 ///
515 /// If you don't necessarily need a new fixed-size array, consider using
516 /// [`Iterator::map`] instead.
517 ///
518 ///
519 /// # Note on performance and stack usage
520 ///
521 /// Note that this method is *eager*. It evaluates `f` all `N` times before
522 /// returning the new array.
523 ///
524 /// That means that `arr.map(f).map(g)` is, in general, *not* equivalent to
525 /// `array.map(|x| g(f(x)))`, as the former calls `f` 4 times then `g` 4 times,
526 /// whereas the latter interleaves the calls (`fgfgfgfg`).
527 ///
528 /// A consequence of this is that it can have fairly-high stack usage, especially
529 /// in debug mode or for long arrays. The backend may be able to optimize it
530 /// away, but especially for complicated mappings it might not be able to.
531 ///
532 /// If you're doing a one-step `map` and really want an array as the result,
533 /// then absolutely use this method. Its implementation uses a bunch of tricks
534 /// to help the optimizer handle it well. Particularly for simple arrays,
535 /// like `[u8; 3]` or `[f32; 4]`, there's nothing to be concerned about.
536 ///
537 /// However, if you don't actually need an *array* of the results specifically,
538 /// just to process them, then you likely want [`Iterator::map`] instead.
539 ///
540 /// For example, rather than doing an array-to-array map of all the elements
541 /// in the array up-front and only iterating after that completes,
542 ///
543 /// ```
544 /// # let my_array = [1, 2, 3];
545 /// # let f = |x: i32| x + 1;
546 /// for x in my_array.map(f) {
547 /// // ...
548 /// }
549 /// ```
550 ///
551 /// It's often better to use an iterator along the lines of
552 ///
553 /// ```
554 /// # let my_array = [1, 2, 3];
555 /// # let f = |x: i32| x + 1;
556 /// for x in my_array.into_iter().map(f) {
557 /// // ...
558 /// }
559 /// ```
560 ///
561 /// as that's more likely to avoid large temporaries.
562 ///
563 ///
564 /// # Examples
565 ///
566 /// ```
567 /// let x = [1, 2, 3];
568 /// let y = x.map(|v| v + 1);
569 /// assert_eq!(y, [2, 3, 4]);
570 ///
571 /// let x = [1, 2, 3];
572 /// let mut temp = 0;
573 /// let y = x.map(|v| { temp += 1; v * temp });
574 /// assert_eq!(y, [1, 4, 9]);
575 ///
576 /// let x = ["Ferris", "Bueller's", "Day", "Off"];
577 /// let y = x.map(|v| v.len());
578 /// assert_eq!(y, [6, 9, 3, 3]);
579 /// ```
580 #[must_use]
581 #[stable(feature = "array_map", since = "1.55.0")]
582 #[rustc_const_unstable(feature = "const_array", issue = "147606")]
583 pub const fn map<F, U>(self, f: F) -> [U; N]
584 where
585 F: [const] FnMut(T) -> U + [const] Destruct,
586 U: [const] Destruct,
587 T: [const] Destruct,
588 {
589 self.try_map(NeverShortCircuit::wrap_mut_1(f)).0
590 }
591
592 /// A fallible function `f` applied to each element on array `self` in order to
593 /// return an array the same size as `self` or the first error encountered.
594 ///
595 /// The return type of this function depends on the return type of the closure.
596 /// If you return `Result<T, E>` from the closure, you'll get a `Result<[T; N], E>`.
597 /// If you return `Option<T>` from the closure, you'll get an `Option<[T; N]>`.
598 ///
599 /// # Examples
600 ///
601 /// ```
602 /// #![feature(array_try_map)]
603 ///
604 /// let a = ["1", "2", "3"];
605 /// let b = a.try_map(|v| v.parse::<u32>()).unwrap().map(|v| v + 1);
606 /// assert_eq!(b, [2, 3, 4]);
607 ///
608 /// let a = ["1", "2a", "3"];
609 /// let b = a.try_map(|v| v.parse::<u32>());
610 /// assert!(b.is_err());
611 ///
612 /// use std::num::NonZero;
613 ///
614 /// let z = [1, 2, 0, 3, 4];
615 /// assert_eq!(z.try_map(NonZero::new), None);
616 ///
617 /// let a = [1, 2, 3];
618 /// let b = a.try_map(NonZero::new);
619 /// let c = b.map(|x| x.map(NonZero::get));
620 /// assert_eq!(c, Some(a));
621 /// ```
622 #[unstable(feature = "array_try_map", issue = "79711")]
623 #[rustc_const_unstable(feature = "array_try_map", issue = "79711")]
624 pub const fn try_map<R>(
625 self,
626 mut f: impl [const] FnMut(T) -> R + [const] Destruct,
627 ) -> ChangeOutputType<R, [R::Output; N]>
628 where
629 R: [const] Try<Residual: [const] Residual<[R::Output; N]>, Output: [const] Destruct>,
630 T: [const] Destruct,
631 {
632 let mut me = ManuallyDrop::new(self);
633 // SAFETY: try_from_fn calls `f` N times.
634 let mut f = unsafe { drain::Drain::new(&mut me, &mut f) };
635 try_from_fn(&mut f)
636 }
637
638 /// Returns a slice containing the entire array. Equivalent to `&s[..]`.
639 #[stable(feature = "array_as_slice", since = "1.57.0")]
640 #[rustc_const_stable(feature = "array_as_slice", since = "1.57.0")]
641 pub const fn as_slice(&self) -> &[T] {
642 self
643 }
644
645 /// Returns a mutable slice containing the entire array. Equivalent to
646 /// `&mut s[..]`.
647 #[stable(feature = "array_as_slice", since = "1.57.0")]
648 #[rustc_const_stable(feature = "const_array_as_mut_slice", since = "1.89.0")]
649 pub const fn as_mut_slice(&mut self) -> &mut [T] {
650 self
651 }
652
653 /// Borrows each element and returns an array of references with the same
654 /// size as `self`.
655 ///
656 ///
657 /// # Example
658 ///
659 /// ```
660 /// let floats = [3.1, 2.7, -1.0];
661 /// let float_refs: [&f64; 3] = floats.each_ref();
662 /// assert_eq!(float_refs, [&3.1, &2.7, &-1.0]);
663 /// ```
664 ///
665 /// This method is particularly useful if combined with other methods, like
666 /// [`map`](#method.map). This way, you can avoid moving the original
667 /// array if its elements are not [`Copy`].
668 ///
669 /// ```
670 /// let strings = ["Ferris".to_string(), "♥".to_string(), "Rust".to_string()];
671 /// let is_ascii = strings.each_ref().map(|s| s.is_ascii());
672 /// assert_eq!(is_ascii, [true, false, true]);
673 ///
674 /// // We can still access the original array: it has not been moved.
675 /// assert_eq!(strings.len(), 3);
676 /// ```
677 #[stable(feature = "array_methods", since = "1.77.0")]
678 #[rustc_const_stable(feature = "const_array_each_ref", since = "1.91.0")]
679 pub const fn each_ref(&self) -> [&T; N] {
680 let mut buf = [null::<T>(); N];
681
682 // FIXME(const_trait_impl): We would like to simply use iterators for this (as in the original implementation), but this is not allowed in constant expressions.
683 let mut i = 0;
684 while i < N {
685 buf[i] = &raw const self[i];
686
687 i += 1;
688 }
689
690 // SAFETY: `*const T` has the same layout as `&T`, and we've also initialised each pointer as a valid reference.
691 unsafe { transmute_unchecked(buf) }
692 }
693
694 /// Borrows each element mutably and returns an array of mutable references
695 /// with the same size as `self`.
696 ///
697 ///
698 /// # Example
699 ///
700 /// ```
701 ///
702 /// let mut floats = [3.1, 2.7, -1.0];
703 /// let float_refs: [&mut f64; 3] = floats.each_mut();
704 /// *float_refs[0] = 0.0;
705 /// assert_eq!(float_refs, [&mut 0.0, &mut 2.7, &mut -1.0]);
706 /// assert_eq!(floats, [0.0, 2.7, -1.0]);
707 /// ```
708 #[stable(feature = "array_methods", since = "1.77.0")]
709 #[rustc_const_stable(feature = "const_array_each_ref", since = "1.91.0")]
710 pub const fn each_mut(&mut self) -> [&mut T; N] {
711 let mut buf = [null_mut::<T>(); N];
712
713 // FIXME(const_trait_impl): We would like to simply use iterators for this (as in the original implementation), but this is not allowed in constant expressions.
714 let mut i = 0;
715 while i < N {
716 buf[i] = &raw mut self[i];
717
718 i += 1;
719 }
720
721 // SAFETY: `*mut T` has the same layout as `&mut T`, and we've also initialised each pointer as a valid reference.
722 unsafe { transmute_unchecked(buf) }
723 }
724
725 /// Divides one array reference into two at an index.
726 ///
727 /// The first will contain all indices from `[0, M)` (excluding
728 /// the index `M` itself) and the second will contain all
729 /// indices from `[M, N)` (excluding the index `N` itself).
730 ///
731 /// # Panics
732 ///
733 /// Panics if `M > N`.
734 ///
735 /// # Examples
736 ///
737 /// ```
738 /// #![feature(split_array)]
739 ///
740 /// let v = [1, 2, 3, 4, 5, 6];
741 ///
742 /// {
743 /// let (left, right) = v.split_array_ref::<0>();
744 /// assert_eq!(left, &[]);
745 /// assert_eq!(right, &[1, 2, 3, 4, 5, 6]);
746 /// }
747 ///
748 /// {
749 /// let (left, right) = v.split_array_ref::<2>();
750 /// assert_eq!(left, &[1, 2]);
751 /// assert_eq!(right, &[3, 4, 5, 6]);
752 /// }
753 ///
754 /// {
755 /// let (left, right) = v.split_array_ref::<6>();
756 /// assert_eq!(left, &[1, 2, 3, 4, 5, 6]);
757 /// assert_eq!(right, &[]);
758 /// }
759 /// ```
760 #[unstable(
761 feature = "split_array",
762 reason = "return type should have array as 2nd element",
763 issue = "90091"
764 )]
765 #[inline]
766 pub fn split_array_ref<const M: usize>(&self) -> (&[T; M], &[T]) {
767 self.split_first_chunk::<M>().unwrap()
768 }
769
770 /// Divides one mutable array reference into two at an index.
771 ///
772 /// The first will contain all indices from `[0, M)` (excluding
773 /// the index `M` itself) and the second will contain all
774 /// indices from `[M, N)` (excluding the index `N` itself).
775 ///
776 /// # Panics
777 ///
778 /// Panics if `M > N`.
779 ///
780 /// # Examples
781 ///
782 /// ```
783 /// #![feature(split_array)]
784 ///
785 /// let mut v = [1, 0, 3, 0, 5, 6];
786 /// let (left, right) = v.split_array_mut::<2>();
787 /// assert_eq!(left, &mut [1, 0][..]);
788 /// assert_eq!(right, &mut [3, 0, 5, 6]);
789 /// left[1] = 2;
790 /// right[1] = 4;
791 /// assert_eq!(v, [1, 2, 3, 4, 5, 6]);
792 /// ```
793 #[unstable(
794 feature = "split_array",
795 reason = "return type should have array as 2nd element",
796 issue = "90091"
797 )]
798 #[inline]
799 pub fn split_array_mut<const M: usize>(&mut self) -> (&mut [T; M], &mut [T]) {
800 self.split_first_chunk_mut::<M>().unwrap()
801 }
802
803 /// Divides one array reference into two at an index from the end.
804 ///
805 /// The first will contain all indices from `[0, N - M)` (excluding
806 /// the index `N - M` itself) and the second will contain all
807 /// indices from `[N - M, N)` (excluding the index `N` itself).
808 ///
809 /// # Panics
810 ///
811 /// Panics if `M > N`.
812 ///
813 /// # Examples
814 ///
815 /// ```
816 /// #![feature(split_array)]
817 ///
818 /// let v = [1, 2, 3, 4, 5, 6];
819 ///
820 /// {
821 /// let (left, right) = v.rsplit_array_ref::<0>();
822 /// assert_eq!(left, &[1, 2, 3, 4, 5, 6]);
823 /// assert_eq!(right, &[]);
824 /// }
825 ///
826 /// {
827 /// let (left, right) = v.rsplit_array_ref::<2>();
828 /// assert_eq!(left, &[1, 2, 3, 4]);
829 /// assert_eq!(right, &[5, 6]);
830 /// }
831 ///
832 /// {
833 /// let (left, right) = v.rsplit_array_ref::<6>();
834 /// assert_eq!(left, &[]);
835 /// assert_eq!(right, &[1, 2, 3, 4, 5, 6]);
836 /// }
837 /// ```
838 #[unstable(
839 feature = "split_array",
840 reason = "return type should have array as 2nd element",
841 issue = "90091"
842 )]
843 #[inline]
844 pub fn rsplit_array_ref<const M: usize>(&self) -> (&[T], &[T; M]) {
845 self.split_last_chunk::<M>().unwrap()
846 }
847
848 /// Divides one mutable array reference into two at an index from the end.
849 ///
850 /// The first will contain all indices from `[0, N - M)` (excluding
851 /// the index `N - M` itself) and the second will contain all
852 /// indices from `[N - M, N)` (excluding the index `N` itself).
853 ///
854 /// # Panics
855 ///
856 /// Panics if `M > N`.
857 ///
858 /// # Examples
859 ///
860 /// ```
861 /// #![feature(split_array)]
862 ///
863 /// let mut v = [1, 0, 3, 0, 5, 6];
864 /// let (left, right) = v.rsplit_array_mut::<4>();
865 /// assert_eq!(left, &mut [1, 0]);
866 /// assert_eq!(right, &mut [3, 0, 5, 6][..]);
867 /// left[1] = 2;
868 /// right[1] = 4;
869 /// assert_eq!(v, [1, 2, 3, 4, 5, 6]);
870 /// ```
871 #[unstable(
872 feature = "split_array",
873 reason = "return type should have array as 2nd element",
874 issue = "90091"
875 )]
876 #[inline]
877 pub fn rsplit_array_mut<const M: usize>(&mut self) -> (&mut [T], &mut [T; M]) {
878 self.split_last_chunk_mut::<M>().unwrap()
879 }
880}
881
882/// Populate an array from the first `N` elements of `iter`
883///
884/// # Panics
885///
886/// If the iterator doesn't actually have enough items.
887///
888/// By depending on `TrustedLen`, however, we can do that check up-front (where
889/// it easily optimizes away) so it doesn't impact the loop that fills the array.
890#[inline]
891fn from_trusted_iterator<T, const N: usize>(iter: impl UncheckedIterator<Item = T>) -> [T; N] {
892 try_from_trusted_iterator(iter.map(NeverShortCircuit)).0
893}
894
895#[inline]
896fn try_from_trusted_iterator<T, R, const N: usize>(
897 iter: impl UncheckedIterator<Item = R>,
898) -> ChangeOutputType<R, [T; N]>
899where
900 R: Try<Output = T>,
901 R::Residual: Residual<[T; N]>,
902{
903 assert!(iter.size_hint().0 >= N);
904 fn next<T>(mut iter: impl UncheckedIterator<Item = T>) -> impl FnMut(usize) -> T {
905 move |_| {
906 // SAFETY: We know that `from_fn` will call this at most N times,
907 // and we checked to ensure that we have at least that many items.
908 unsafe { iter.next_unchecked() }
909 }
910 }
911
912 try_from_fn(next(iter))
913}
914
915/// Version of [`try_from_fn`] using a passed-in slice in order to avoid
916/// needing to monomorphize for every array length.
917///
918/// This takes a generator rather than an iterator so that *at the type level*
919/// it never needs to worry about running out of items. When combined with
920/// an infallible `Try` type, that means the loop canonicalizes easily, allowing
921/// it to optimize well.
922///
923/// It would be *possible* to unify this and [`iter_next_chunk_erased`] into one
924/// function that does the union of both things, but last time it was that way
925/// it resulted in poor codegen from the "are there enough source items?" checks
926/// not optimizing away. So if you give it a shot, make sure to watch what
927/// happens in the codegen tests.
928#[inline]
929#[rustc_const_unstable(feature = "array_try_from_fn", issue = "89379")]
930const fn try_from_fn_erased<R: [const] Try<Output: [const] Destruct>>(
931 buffer: &mut [MaybeUninit<R::Output>],
932 mut generator: impl [const] FnMut(usize) -> R + [const] Destruct,
933) -> ControlFlow<R::Residual> {
934 let mut guard = Guard { array_mut: buffer, initialized: 0 };
935
936 while guard.initialized < guard.array_mut.len() {
937 let item = generator(guard.initialized).branch()?;
938
939 // SAFETY: The loop condition ensures we have space to push the item
940 unsafe { guard.push_unchecked(item) };
941 }
942
943 mem::forget(guard);
944 ControlFlow::Continue(())
945}
946
947/// Panic guard for incremental initialization of arrays.
948///
949/// Disarm the guard with `mem::forget` once the array has been initialized.
950///
951/// # Safety
952///
953/// All write accesses to this structure are unsafe and must maintain a correct
954/// count of `initialized` elements.
955///
956/// To minimize indirection, fields are still pub but callers should at least use
957/// `push_unchecked` to signal that something unsafe is going on.
958struct Guard<'a, T> {
959 /// The array to be initialized.
960 pub array_mut: &'a mut [MaybeUninit<T>],
961 /// The number of items that have been initialized so far.
962 pub initialized: usize,
963}
964
965impl<T> Guard<'_, T> {
966 /// Adds an item to the array and updates the initialized item counter.
967 ///
968 /// # Safety
969 ///
970 /// No more than N elements must be initialized.
971 #[inline]
972 #[rustc_const_unstable(feature = "array_try_from_fn", issue = "89379")]
973 pub(crate) const unsafe fn push_unchecked(&mut self, item: T) {
974 // SAFETY: If `initialized` was correct before and the caller does not
975 // invoke this method more than N times, then writes will be in-bounds
976 // and slots will not be initialized more than once.
977 unsafe {
978 self.array_mut.get_unchecked_mut(self.initialized).write(item);
979 self.initialized = self.initialized.unchecked_add(1);
980 }
981 }
982}
983
984#[rustc_const_unstable(feature = "array_try_from_fn", issue = "89379")]
985impl<T: [const] Destruct> const Drop for Guard<'_, T> {
986 #[inline]
987 fn drop(&mut self) {
988 debug_assert!(self.initialized <= self.array_mut.len());
989 // SAFETY: this slice will contain only initialized objects.
990 unsafe {
991 self.array_mut.get_unchecked_mut(..self.initialized).assume_init_drop();
992 }
993 }
994}
995
996/// Pulls `N` items from `iter` and returns them as an array. If the iterator
997/// yields fewer than `N` items, `Err` is returned containing an iterator over
998/// the already yielded items.
999///
1000/// Since the iterator is passed as a mutable reference and this function calls
1001/// `next` at most `N` times, the iterator can still be used afterwards to
1002/// retrieve the remaining items.
1003///
1004/// If `iter.next()` panics, all items already yielded by the iterator are
1005/// dropped.
1006///
1007/// Used for [`Iterator::next_chunk`].
1008#[inline]
1009pub(crate) fn iter_next_chunk<T, const N: usize>(
1010 iter: &mut impl Iterator<Item = T>,
1011) -> Result<[T; N], IntoIter<T, N>> {
1012 let mut array = [const { MaybeUninit::uninit() }; N];
1013 let r = iter_next_chunk_erased(&mut array, iter);
1014 match r {
1015 Ok(()) => {
1016 // SAFETY: All elements of `array` were populated.
1017 Ok(unsafe { MaybeUninit::array_assume_init(array) })
1018 }
1019 Err(initialized) => {
1020 // SAFETY: Only the first `initialized` elements were populated
1021 Err(unsafe { IntoIter::new_unchecked(array, 0..initialized) })
1022 }
1023 }
1024}
1025
1026/// Version of [`iter_next_chunk`] using a passed-in slice in order to avoid
1027/// needing to monomorphize for every array length.
1028///
1029/// Unfortunately this loop has two exit conditions, the buffer filling up
1030/// or the iterator running out of items, making it tend to optimize poorly.
1031#[inline]
1032fn iter_next_chunk_erased<T>(
1033 buffer: &mut [MaybeUninit<T>],
1034 iter: &mut impl Iterator<Item = T>,
1035) -> Result<(), usize> {
1036 // if `Iterator::next` panics, this guard will drop already initialized items
1037 let mut guard = Guard { array_mut: buffer, initialized: 0 };
1038 while guard.initialized < guard.array_mut.len() {
1039 let Some(item) = iter.next() else {
1040 // Unlike `try_from_fn_erased`, we want to keep the partial results,
1041 // so we need to defuse the guard instead of using `?`.
1042 let initialized = guard.initialized;
1043 mem::forget(guard);
1044 return Err(initialized);
1045 };
1046
1047 // SAFETY: The loop condition ensures we have space to push the item
1048 unsafe { guard.push_unchecked(item) };
1049 }
1050
1051 mem::forget(guard);
1052 Ok(())
1053}