1.2.0
Deno port of x3/cion/x3-linkedlist
Repository
Current version released
3 years ago
Versions
x3cion/x3-linkedlist
This is a port for deno ofIntro
This is a linked list implementation for Deno written in TypeScript.
How to use
const list = new LinkedList([1, 2, 3, 4]);
console.log('content:', list.join(' -> '));
See docs/typedoc for further infos.