Releases: go-playground/pkg
Releases · go-playground/pkg
Release 5.17.0
v5.17.0 Helper Functions & building Blocks (#30)
Release 5.16.0
v5.16.0 Add sliceext.Reverse (#29)
Release 5.15.2
v5.15.2 remove unessesary second type param on Mutex2 (#28)
Release 5.15.1
v5.15.1 make it safer (#27)
Release 5.15.0
v5.15.0 add corrected Mutexes in sync directory (#26)
release 5.14.0
See CHANGELOG going forward for details.
Release 5.13.0
What's new?
Added new methods to Doubly Linked List: InsertBefore, InsertAfter, InsertAtFront, InsertAtBack.
This allows for the detaching and insertion of existing nodes which helps prevent creating new allocation when not needed.
Release 5.12.3
What was fixed?
Corrected documentation on some Doubly Linked List methods.
Release 5.12.2
What was fixed?
Fixed and bug with the Remove function of the Doubly Linked List when the node being removed was the sole entry.
Release 5.12.1
What was fixed?
Fixing Doubly Linked List Node value access.
The initial implementation required an extra copy to get the value, fixing to allow direct access.
To change the value also caused the value V to have to be a pointer, this corrects that need.