Expand description
a collection of useful features for working with arrays
Modules§
- pervasive array operations.
- The prelude. You should
Traits§
- Turn a tuple into a array. Implemented for N≤32
- Array tools.
- 🍪
- Collect an iterator into a array.
- Couple two arrays together.
- Remove the first element of a array. The opposite of
Trunc
. - Join scalars together.
- Pop parts of a array. Use
- Removes the last element of a array. The opposite of
DropFront
. - Turn a array into a tuple. Implemented for N≤32
Functions§
- Creates a array of indices.
- Convenience function for when clonage is required; prefer
[T; N]
if possible. Also useful ifN
should be inferred.