| Name | Description |
|---|
| array::@tzip | Array 'zip' using the temp allocator. |
| array::@any | Returns `true` if _any_ element of the input array returns `true` when... |
| array::@reduce | Apply a reduction/folding operation to an iterable type. This walks along the input array... |
| array::@indices_of | Applies a given predicate function to each element of an array and returns a new... |
| array::@tindices_of | Array `@indices_of` using the temp allocator. |
| array::@filter | Applies a predicate function to each element of an input array and returns a new array... |
| array::concat | Concatenate two arrays or slices, returning a slice containing the concatenation of them. |
| array::@all | Returns `true` if _all_ elements of the input array return `true` when... |
| array::index_of | Return the first index of element found in the array, searching from the start. |
| array::@tfilter | Array `@filter` using the temp allocator. |
| array::@zip | Zip together two separate arrays/slices into a single array of Pairs or return values. Values will... |
| array::tconcat | Concatenate two arrays or slices, returning a slice containing the concatenation of them,... |
| array::@product | Apply a product operator (*) to an identity value across a span of array elements... |
| array::contains | Returns true if the array contains at least one element, else false |
| array::rindex_of | Return the first index of element found in the array, searching in reverse from the end. |
| array::@zip_into | Apply an operation to each element of two slices or arrays and store the results of... |
| array::slice2d | Slice a 2d array and create a Slice2d from it. |
| array::@sum | Apply a summation operator (+) to an identity value across a span of array elements... |