Releases: lindsaygelle/slice
Releases · lindsaygelle/slice
v1.3.0
Version 1.3.0 (2023-10-19)
New Functions
- Clone: copies the pointer Slice into a new Slice.
- Modify: modifies the pointer Slice (replaces Reduce).
- ReduceReverse: added to allow for inverse order functions.
- Splice: truncates the pointer Slice (replaces Slice).
Fixes
- Slice: creates a copy of the Slice.
- Reduce: reduces Slice down to a single result.
- Precatenate: now correctly adds values to the head of the Slice.
What's Changed
- Dev by @lindsaygelle in #47
Full Changelog: v1.2.2...v1.3.0
v1.2.2
v1.0.0
Version 1.0.0 (2023-09-26)
Features
- Generic slice allowing you to hold elements of different types in a type-safe manner.
- Handles common programming errors such as null pointer dereferences and out-of-bounds array accesses.
- Common methods designed to address frequently encountered tasks and operations, providing a standard set of functions to work with.