https://github.com/iangudger/ilist
Intrusive generic linked list in Go
https://github.com/iangudger/ilist
data-structures go golang linked-list
Last synced: 2 months ago
JSON representation
Intrusive generic linked list in Go
- Host: GitHub
- URL: https://github.com/iangudger/ilist
- Owner: iangudger
- License: apache-2.0
- Created: 2022-12-12T22:17:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-05T23:19:06.000Z (over 2 years ago)
- Last Synced: 2024-06-20T06:32:16.169Z (almost 2 years ago)
- Topics: data-structures, go, golang, linked-list
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Intrusive generic linked list in Go
An intrusive data structure requires elements to embed a part of the data structure. This improves performance by reducing allocations.