Skip to content

Releases: lindsaygelle/slice

v1.3.0

19 Oct 06:26
5723085
Compare
Choose a tag to compare

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

v1.2.2

27 Sep 12:33
b732144
Compare
Choose a tag to compare

Version 1.2.2 (2023-09-27)

#46

v1.0.0

26 Sep 12:01
743802c
Compare
Choose a tag to compare

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.