Static Array Version 0.4.0 (v0.4.0) - 25 Jan 2024
- Add a new feature flag
rayon
that enables support for creating arrays in parallel. This uses therayon
crate. - Add
from_fn_par
methods that create an array in parallel usingrayon
.
Full Changelog: https://github.com/Tomaso2468/static-array/compare/v0.3.0...v0.4.0
Static Array Version 0.3.0 (v0.3.0) - 15 Jan 2024
- Added the ability to index a subarray of a
HeapArray2D
orHeapArray3D
.
- Removed the ability to index a multidimensional array using a tuple index.
Static Array Version 0.2.0 (v0.2.0) - 15 Jan 2024
- Removed the dependency on the
std
crate. The crate only requiresalloc
now.
Static Array Version 0.1.0 (v0.1.0) - 13 Jan 2024
The initial release of the static array crate.