Skip to content

Releases: plar/go-adaptive-radix-tree

Bugfix: support nil keys

08 Dec 06:33
154dc06
Compare
Choose a tag to compare

Fix #26: insert multiple nil keys should not panic

Memory and performance optimization release

16 Aug 07:15
e4cdd43
Compare
Choose a tag to compare
  • Optimize node16/48 space usage
  • Optimize node16 performance using bits package instead of sort
  • Minor changes and code refactoring

Fix infra code

12 Aug 10:45
ee0b28d
Compare
Choose a tag to compare
  • Update travis to support go v1.13, v1.14 and v1.15
  • Fix go v1.15 vet errors
  • Restore test coverage to 100%

Bugfix: tree traversal with conditional callback

12 Aug 08:13
109e701
Compare
Choose a tag to compare

Fix #14: The tree traversal did not stop in some cases, even when the callback returned false.