Skip to content

Latest commit

 

History

History
7 lines (4 loc) · 352 Bytes

README.md

File metadata and controls

7 lines (4 loc) · 352 Bytes

Generic-based Linked List

With the introduction of generics in Go 1.18, we can now implement generic-based collection like stack, linked-list, queue, and any custom collection more easily. Here's an example of a linked list implemented in Go generics.

Reference