devela/data/list/array/
reexports.rs
1use crate::reexport;
7
8reexport! { rust: core::array,
9 tag: crate::TAG_ITERATOR!(),
10 doc: "A by-value [array] iterator.",
11 @IntoIter as ArrayIntoIter
12}
13reexport! { rust: core::array,
14 doc: "Creates an array `[T; N]`, where each `T` is returned from `cb` from its index.",
15 @from_fn as array_from_fn
16}
17reexport! { rust: core::array,
18 doc: "Converts a mutable reference to `T` into `&mut [T; 1]` (without copying).",
19 @from_mut as array_from_mut
20}
21reexport! { rust: core::array,
22 doc: "Converts a reference to `T` into `&[T; 1]` (without copying).",
23 @from_ref as array_from_ref
24}